UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 182 B
'use strict'; /** * Turn CamelCase to '_' */ function underscored(target) { return target.replace(/([a-z0-9])([A-Z])/g, '$1_$2').toLowerCase(); } module.exports = underscored;