Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 351 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 351 Bytes

业务代码工具库

开发

npm install
# 代码格式化
npm run prettier
# 提交代码
npm run cz
# 代码测试
npm run test

browser 引入

<script src="./@zonglinlee/js-utils/dist/umd/bundle.min.js"></script>
<script>
    const type = window.JsUtils.checkType('JsUtils', true)
    console.log(type);
</script>