Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| { | |
| // http://eslint.org/docs/rules/ | |
| "ecmaFeatures": { | |
| "binaryLiterals": false, // enable binary literals | |
| "blockBindings": false, // enable let and const (aka block bindings) | |
| "defaultParams": false, // enable default function parameters | |
| "forOf": false, // enable for-of loops | |
| "generators": false, // enable generators | |
| "objectLiteralComputedProperties": false, // enable computed object literal property names |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| // requestAnimationFrame polyfill by @rma4ok | |
| !function (window) { | |
| var | |
| equestAnimationFrame = 'equestAnimationFrame', | |
| requestAnimationFrame = 'r' + equestAnimationFrame, | |
| ancelAnimationFrame = 'ancelAnimationFrame', | |
| cancelAnimationFrame = 'c' + ancelAnimationFrame, | |
| expectedTime = 0, |