JavaScript 函数工具方法
使用npm安装
npm install @psyduck4u/function-utils
下载function-utils.min.js
在你的项目中引入即可。
<script src="cookie-manager.min.js"></script>
import FnUtils from '@psyduck4u/function-utils';
或者在引入function-utils.min.js
之后,你就可以使用FnUtils
对象了。
FnUtils.debounce(func, delay);
func (Function)
functiondelay (Number)
delay in milliseconds
FnUtils.throttle(func, limit);
func (Function)
functionlimit (Number)
limit in milliseconds
FnUtils.hasProperty(obj, path);
obj (Object)
objectpath (String)
eg. "x.y.z"
Created and maintained by Yuxiang Yang under MIT License