1.0.4 • Published 2 years ago

billows v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

GitHub code size in bytes GitHub GitHub Repo stars

Billows

常用的工具函数集合

Install

npm install billows

Usage

// 全量引入
import * as billows from 'billows';
billows.typeOf('chengbotao'); // "string"

// 差量使用
import { typeOf } from 'billows';
typeOf('chengbotao'); // "string"
函数名说明
typeOf返回变量类型
instanceOf检测构造函数的 prototype 属性是否出现在某个实例对象的原型链上
setValueByReference通过引用设置值的函数
getValueByReference通过引用获取值的函数
deepClone深拷贝函数
treeToFlat树结构转扁平化结构
partial偏函数
getNodeFromTree根据唯一标志从树结构中获取节点
flatToTree扁平化转结构转树结构
curry函数柯里化
buildURLurlparams 生成 URL
debounce函数防抖
encodeURIC有过滤特殊字符功能的 encodeURIComponent
isURLSearchParams判断是否是 URLSearchParams
jsonppromise 封装 jsonp
throttle函数节流
parseUrl解析 URL 参数

Docs

文档地址

License

MIT

1.0.2

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago