1.0.0 • Published 2 years ago

tbf-mytools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

##安装

npm install tbf-mytools

##导入

const tbf =require('tbf-mytools')

##格式化时间的功能

const dtStr = tbf.dateFormat(new Date());

//结果:2022-07-10 22:12:37

##拍平数组的功能

// 这是调用flat 拍平数组
// let array = [1, [2], [3, [4, [5]]]]  例如:let array = [1, [2], [3, [4, [5]]]] 将array数组拍平
const arrStr = tbf.flat(array);

// 结果   [ 1, 2, 3, 4, 5 ]