uni-ticket-system/node_modules/licia/kebabCase.js

7 lines
133 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
var splitCase = require('./splitCase');
exports = function(str) {
return splitCase(str).join('-');
};
module.exports = exports;