added whole system from ola4doc
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
|
||||
var callable = require('../../object/valid-callable')
|
||||
|
||||
, apply = Function.prototype.apply;
|
||||
|
||||
module.exports = function () {
|
||||
var fn = callable(this);
|
||||
return function (args) { return apply.call(fn, this, args); };
|
||||
};
|
||||
Reference in New Issue
Block a user