UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 165 B
/** * Turn CamelCase to '_' */ function underscored(target) { return target.replace(/([a-z0-9])([A-Z])/g, '$1_$2').toLowerCase(); } export default underscored;