hg-jslibrary
v0.1.7
Published
Library of common JavaScript function
Downloads
2
Readme
hg-jslibrary
Library of common JavaScript function
Install
npm install hg-jslibrary
Usage
import f from "hg-jslibrary";
f.type(new Date()); // "Date"
如果你希望每个文件里都使用import
引入,需如下配置
// webpack.config.js
module.exports = {
...
plugins: [
new webpack.ProvidePlugin({
f: ['hg-jslibrary', 'default']
})
]
}
API
Changelog
2018.3.14
v0.1.7 修复打包错误
2018.9.7
v0.1.6 添加 parseUrl 方法
2018.9.7
v0.1.4 添加文档
2018.8.24
v0.1.2 添加 getValInObj 方法
v0.1.1 添加 arrSort 方法
2018.8.23
v0.1.0 初始化项目