UNPKG

chameleon-linter

Version:

cml规范校验工具

4 lines (3 loc) 134 B
module.exports.dashtoCamelcase = function(str = '') { return str && str.replace(/-(\w)/g, (all, letter) => letter.toUpperCase()); }