UNPKG

lenye_base

Version:

基础方法

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