schnee effeckt und fehler Korektur
This commit is contained in:
2
node_modules/es5-ext/function/#/compose.js
generated
vendored
2
node_modules/es5-ext/function/#/compose.js
generated
vendored
@@ -8,7 +8,7 @@ var apply = Function.prototype.apply
|
||||
, call = Function.prototype.call
|
||||
, callFn = function (arg, fn) { return call.call(fn, this, arg); };
|
||||
|
||||
module.exports = function (fnIgnored/*, …fnn*/) {
|
||||
module.exports = function (fnIgnored /*, …fnn*/) {
|
||||
var fns, first;
|
||||
var args = aFrom(arguments);
|
||||
fns = isValue(this) ? [this].concat(args) : args;
|
||||
|
||||
2
node_modules/es5-ext/function/invoke.js
generated
vendored
2
node_modules/es5-ext/function/invoke.js
generated
vendored
@@ -5,7 +5,7 @@ var isCallable = require("../object/is-callable")
|
||||
, slice = Array.prototype.slice
|
||||
, apply = Function.prototype.apply;
|
||||
|
||||
module.exports = function (name/*, …args*/) {
|
||||
module.exports = function (name /*, …args*/) {
|
||||
var args = slice.call(arguments, 1), isFn = isCallable(name);
|
||||
return function (obj) {
|
||||
value(obj);
|
||||
|
||||
Reference in New Issue
Block a user