# hl-utils



JavaScript 函数库、工具类

## Browser Support

![IE](https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_7-8/internet-explorer_7-8_48x48.png) | ![Edge](https://raw.github.com/alrra/browser-logos/master/src/edge/edge_48x48.png) | ![Chrome](https://raw.github.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/src/opera/opera_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/src/safari/safari_48x48.png)
--- | --- | --- | --- | --- | --- |
7+ ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 6+ ✔ |

## Docs

[To view the document]() [查看文档]()

## Installing

```shell
npm install hl-utils
```

Using nodejs

```javascript
const HLUtils = require('hl-utils')
```

Get on [unpkg]() and [cdnjs]( )

```HTML
 
```

### Import all methods

```javascript
import HLUtils from 'hl-utils'

HLUtils.toDateString(Date.now())
// 2018-01-01 10:30:28
HLUtils.toStringDate('2018-01-01 10:30:00')
// Mon Jan 01 2018 10:30:00 GMT+0800 (中国标准时间)
```

## Import on demand

这样按需引入方法，可以使体积达到最小  
单个导入，包的大小 gzip >≈ 60B+，按需导入

```javascript
import each from 'hl-utils/each'
import toDateString from 'hl-utils/toDateString'

each({ a: 11, b: 22, c: 33 }, function (item, key){
  console.log(item)
})
// 11
// 22
// 33
toDateString(Date.now(), 'yyyy-MM-dd HH:mm:ss')
// 2018-01-01 10:30:28
```

```javascript
import HLUtils from 'hl-utils/ctor'
import each from 'hl-utils/each'
import toDateString from 'hl-utils/toDateString'
import toFixedNumber from 'hl-utils/toFixedNumber'

HLUtils.mixin({
  each,
  toDateString,
  toFixedNumber
})
HLUtils.toDateString(Date.now(), 'yyyy-MM-dd HH:mm:ss')
// 2018-01-01 10:30:28
```

按功能导入所有方法

```javascript
import HLUtils from 'hl-utils/ctor'
import objectMethods from 'hl-utils/object'
import arrayMethods from 'hl-utils/array'
import baseMethods from 'hl-utils/base'
import numberMethods from 'hl-utils/number'
import dateMethods from 'hl-utils/date'
import stringMethods from 'hl-utils/string'
import functionMethods from 'hl-utils/function'
import urlMethods from 'hl-utils/url'
import webMethods from 'hl-utils/web'

HLUtils.mixin(
  // Object
  objectMethods,
  // Array
  arrayMethods,
  // Base
  baseMethods,
  // Number
  numberMethods,
  // Date
  dateMethods,
  // String
  stringMethods,
  // Function
  functionMethods,
  // URL
  urlMethods,
  // Web
  webMethods
)
```

## License

[MIT](LICENSE) © 2017-present, Xu Liangzhan
