文件名称:hook-function
文件大小:16KB
文件格式:ZIP
更新时间:2024-06-12 10:41:50
JavaScript
挂钩功能 一个小工具,用于在钩子之前和之后添加到另一个函数,没有额外的依赖关系 安装 // with npm npm install hook-function // or with yarn yarn add hook-function 例子 样例功能 function first ( ) { console . log ( '1st' ) ; } function second ( ) { console . log ( '2nd' ) ; } function main ( ) { console . log ( 'main' ) ; } const makeDelayFn = ( ms ) => function delayed ( ) { return new Promise ( ( resolve ) => { setTimeout (
【文件预览】:
hook-function-master
----LICENSE(34KB)
----README.md(2KB)
----.gitignore(2KB)
----index.js(3KB)
----package-lock.json(76B)
----package.json(735B)