文件名称:mimic-fn:使功能模仿另一个
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-21 01:16:15
JavaScript
使功能模仿另一个 当您将一个函数包装到另一个函数中并喜欢保留原始名称和其他属性时很有用。 安装 $ npm install mimic-fn 用法 import mimicFunction from 'mimic-fn' ; function foo ( ) { } foo . unicorn = ':unicorn:' ; function wrapper ( ) { return foo ( ) ; } console . log ( wrapper . name ) ; //=> 'wrapper' mimicFunction ( wrapper , foo ) ; console . log ( wrapper . name ) ; //=> 'foo' console . log ( wrapper . unicorn ) ; //=> ':unicorn:' console . log ( String (
【文件预览】:
mimic-fn-main
----.gitignore(23B)
----media()
--------logo.svg(2KB)
----package.json(753B)
----.npmrc(19B)
----index.js(3KB)
----test.js(6KB)
----.github()
--------security.md(179B)
--------workflows()
--------funding.yml(114B)
----license(1KB)
----readme.md(2KB)
----index.test-d.ts(436B)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(1KB)