mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 11:27:50 +00:00
Ensure consistent unit test count depending on build.
Former-commit-id: 390020635374f6fb1165a6adef0648847ec9cb9e
This commit is contained in:
@@ -2984,10 +2984,11 @@
|
|||||||
'zip'
|
'zip'
|
||||||
];
|
];
|
||||||
|
|
||||||
var funcs = _.without.apply(_, [_.functions(_)].concat([
|
var allMethods = _.reject(_.functions(_), function(methodName) {
|
||||||
'_',
|
return /^_/.test(methodName);
|
||||||
'_each',
|
});
|
||||||
'_iteratorTemplate',
|
|
||||||
|
var funcs = _.without.apply(_, [allMethods].concat([
|
||||||
'after',
|
'after',
|
||||||
'bind',
|
'bind',
|
||||||
'bindAll',
|
'bindAll',
|
||||||
|
|||||||
Reference in New Issue
Block a user