2048 / js /bind_polyfill.js
yethdev's picture
Upload folder using huggingface_hub
b11323b verified
raw
history blame contribute delete
229 Bytes
Function.prototype.bind = Function.prototype.bind || function (target) {
var self = this;
return function (args) {
if (!(args instanceof Array)) {
args = [args];
}
self.apply(target, args);
};
};