6 lines
143 B
JavaScript
6 lines
143 B
JavaScript
var stringConvert = {
|
|
hyphen2camel: require('./hyphen2camel'),
|
|
camel2hyphen : require('./camel2hyphen')
|
|
};
|
|
|
|
module.exports = stringConvert; |