🚀js 助手,各种数据处理方法集合 🎈
安装:
npm i @xinliang/helper使用示例:
import { helper } from '@xinliang/helper';
const obj = {
a: 'a',
b: 'b',
c: 'c',
}
console.log(helper.deleteAttributeInObject(obj, 'a'));
// => { b: 'b', c: 'c' }构建产物:
npm run build运行测试用例:
npm test