Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/cupcake2048/js/bind_polyfill.js
4626 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