# utils
**Repository Path**: hlshare/utils
## Basic Information
- **Project Name**: utils
- **Description**: 常用的js前端工具库
- **Primary Language**: JavaScript
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-04-09
- **Last Updated**: 2022-05-25
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# @heerey525/utils
基于rollup打包的常用的js前端工具库
## 安装
```sh
npm install @heerey525/utils
```
## 使用
### NPM
安装
```sh
# npm
npm install @heerey525/utils --save
```
引用
```sh
import { cal } from '@heerey525/utils'
# 或者
# import hlUtils from '@heerey525/utils'
cal.addition(0.1, 0.2)
# hlUtils.cal.addition(0.1, 0.2)
```
### CDN
引入
```sh
# 或者
```
使用
```sh
hlUtils.cal.addition(0.1, 0.2)
```