UNPKG

lenye_base

Version:

基础方法

12 lines (8 loc) 204 B
import underscored from './underscored.js'; /** * Turn '_' in a string into '-' */ function dasherize(target) { return underscored(String(target)).replace(/_/g, '-'); } export default dasherize;