1.0.0 • Published 3 years ago

@heerey525/utils v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@heerey525/utils

基于rollup打包的常用的js前端工具库

安装

npm install @heerey525/utils

使用

NPM

安装

# npm
npm install @heerey525/utils --save

引用

import { cal } from '@heerey525/utils'
# 或者
# import hlUtils from '@heerey525/utils'

cal.addition(0.1, 0.2)
# hlUtils.cal.addition(0.1, 0.2)

CDN

引入

<script src="https://unpkg.com/@heerey525/utils@1.0.0/dist/hl-utils.min.js"></script>
# 或者
<script src="https://cdn.jsdelivr.net/npm/@heerey525/utils@1.0.0/dist/hl-utils.min.js"></script>

使用

hlUtils.cal.addition(0.1, 0.2)