summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/mimic-fn/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/mimic-fn/readme.md')
-rw-r--r--tools/node_modules/eslint/node_modules/mimic-fn/readme.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/node_modules/eslint/node_modules/mimic-fn/readme.md b/tools/node_modules/eslint/node_modules/mimic-fn/readme.md
index e575734389..0ef8a13d7e 100644
--- a/tools/node_modules/eslint/node_modules/mimic-fn/readme.md
+++ b/tools/node_modules/eslint/node_modules/mimic-fn/readme.md
@@ -21,7 +21,7 @@ function foo() {}
foo.unicorn = '🦄';
function wrapper() {
- return foo() {};
+ return foo();
}
console.log(wrapper.name);
@@ -43,7 +43,7 @@ It will copy over the properties `name`, `length`, `displayName`, and any custom
### mimicFn(to, from)
-It will modify `to` and return it.
+Modifies the `to` function and returns it.
#### to
@@ -61,6 +61,7 @@ Function to mimic.
## Related
- [rename-fn](https://github.com/sindresorhus/rename-fn) - Rename a function
+- [keep-func-props](https://github.com/ehmicky/keep-func-props) - Wrap a function without changing its name, length and other properties
## License