Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/2048/js/bind_polyfill.js
1325 views
1
Function.prototype.bind = Function.prototype.bind || function (target) {
2
var self = this;
3
return function (args) {
4
if (!(args instanceof Array)) {
5
args = [args];
6
}
7
self.apply(target, args);
8
};
9
};
10
11