Simplify _.mixin.

This commit is contained in:
John-David Dalton
2014-09-15 01:14:40 -07:00
parent edf83823f1
commit 21a492fa43

View File

@@ -4585,11 +4585,10 @@
while (++index < length) {
var args = [result],
data = queue[index],
methodName = data[0],
object = data[1];
push.apply(args, data[2]);
result = object[methodName].apply(object, args);
result = object[data[0]].apply(object, args);
}
return result;
}