WQ Web Front-end Library    ![license]()

安装
``
npm install wq-fel
`
用法
$3
* 引入整体库
`
javascript
import wq-fel from "wq-fel";
// call
wq-fel.string.encodeHtml('xx');
`
* 引入某个整体模块
`
javascript
import string from "wq-fel/string";
// call
string.encodeHtml('xx');
`
* 引入某个具体某个方法
`
javascript
import encodeHtml from "wq-fel/string/encodeHtml";
// call
encodeHtml('xx');
``
模块列表
*
ajax ajax扩展库
*
array array扩展库
*
cookie cookie扩展库
*
date 日期扩展库
*
dom dom扩展库
*
number 数字扩展库
*
platform 平台扩展库
*
string 字符串扩展库
*
url url扩展库
*
validation 验证扩展库