Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
FogNetwork
GitHub Repository: FogNetwork/Tsunami
Path: blob/main/public/games/files/2048/js/bind_polyfill.js
1036 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