# ITRITON-SABER

[@itriton/saber](http://itriton.icjs.ink/itriton/saber/start/introduce.html)，提供开箱即用的JS/TS函数工具库

## 安装(Install)
### npm
`npm install @itriton/saber`

### pnpm
`pnpm install @itriton/saber`

### yarn
`yarn add @itriton/saber`

## 使用(Use)

#### ESM
```
import { getUrlQuery } from '@itriton/saber'

getUrlQuery('name')
```

#### CJS
```
const saber = require('@itriton/saber')

saber.getUrlQuery('name')
```
