xijs icon indicating copy to clipboard operation
xijs copied to clipboard

fix: 优化 hyphenate 函数

Open itmier opened this issue 3 months ago • 0 comments

hyphenate 做了点优化, 针对连续大写专有名词

// 优化前:
console.log(hyphenate('getDataFromDB', '_')) // output: get_data_from_d_b
// 优化后:
console.log(hyphenate('getDataFromDB', '_')) // output: get_data_from_db

itmier avatar Mar 31 '24 14:03 itmier