https://github.com/megapixel99/attdevelopercompetition2018
Submission for the 2018 AT&T App developer Competition
https://github.com/megapixel99/attdevelopercompetition2018
firefox firefox-addon google greasemonkey greasemonkey-script greasemonkey-userscript javascript jquery nodejs
Last synced: about 1 year ago
JSON representation
Submission for the 2018 AT&T App developer Competition
- Host: GitHub
- URL: https://github.com/megapixel99/attdevelopercompetition2018
- Owner: Megapixel99
- Created: 2018-05-11T19:06:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-06T05:37:14.000Z (over 7 years ago)
- Last Synced: 2025-02-04T21:41:23.007Z (about 1 year ago)
- Topics: firefox, firefox-addon, google, greasemonkey, greasemonkey-script, greasemonkey-userscript, javascript, jquery, nodejs
- Language: JavaScript
- Homepage: https://attappdevcomp2018.herokuapp.com/
- Size: 2.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Polyfill for `Object.setPrototypeOf`
A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8.
## Usage:
```
$ npm install --save setprototypeof
```
```javascript
var setPrototypeOf = require('setprototypeof');
var obj = {};
setPrototypeOf(obj, {
foo: function() {
return 'bar';
}
});
obj.foo(); // bar
```