1.0.0 • Published 3 years ago
hhb-utils v1.0.0
安装
npm install hhb-utils
导入
const hhtUtils = require('hhb-utils')
格式化时间
// 对时间进行格式化
const dateStr = hhtUtils.dateFormat(new Date())
console.log(dateStr)
// 结果 YYYY-MM-DD (HH:mm:ss 2022-12-12 00:12:11)
byte转换
// byte转换
const bytes = hhtUtils.bytesToSize(12001212)
console.log(bytes)
// 结果 11.4MB
将驼峰转为下划线
// 将驼峰转为下划线
const str = hhtUtils.camelToUnderline('userNameId')
console.log(str)
// 结果 user_name_id
开源协议
ISC
1.0.0
3 years ago