We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a36a89c commit a9ffe0aCopy full SHA for a9ffe0a
src/imitate/create-imitation.js
@@ -11,7 +11,7 @@ export default (original, names) => {
11
return original
12
} else {
13
// TODO: this will become src/function/create and include parent reference instead of name joining here
14
- return tdFunction(names.map(String).join('') || '(anonymous function)')
+ return tdFunction(_.map(names, String).join('') || '(anonymous function)')
15
}
16
17
return _.clone(original)
0 commit comments