摘要:
```js / 时间格式化 @param { } value 时间 @param { } fmt 格式 使用举例: formatDate(new Date(), 'yyyy MM dd hh:mm:ss'); / export function formatDate(value, fmt) { if 阅读全文
摘要:
```jsexport function deepClone(source) { if (!source && typeof source !== 'object') { throw new Error('error arguments', 'shallowClone'); } const targetObj = source.constructor === Array ? [] : ... 阅读全文