mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17: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'
|
||||
];
|
||||
|
||||
var funcs = _.without.apply(_, [_.functions(_)].concat([
|
||||
'_',
|
||||
'_each',
|
||||
'_iteratorTemplate',
|
||||
var allMethods = _.reject(_.functions(_), function(methodName) {
|
||||
return /^_/.test(methodName);
|
||||
});
|
||||
|
||||
var funcs = _.without.apply(_, [allMethods].concat([
|
||||
'after',
|
||||
'bind',
|
||||
'bindAll',
|
||||
|
||||
Reference in New Issue
Block a user