Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndelangen/phantomjs-polyfill-every
Polyfill for Array.prototype.every
https://github.com/ndelangen/phantomjs-polyfill-every
Last synced: about 2 months ago
JSON representation
Polyfill for Array.prototype.every
- Host: GitHub
- URL: https://github.com/ndelangen/phantomjs-polyfill-every
- Owner: ndelangen
- License: mit
- Created: 2016-07-25T13:56:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-25T14:03:54.000Z (over 8 years ago)
- Last Synced: 2024-11-08T00:07:00.234Z (2 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phantomjs-polyfill-every
This is a polyfill for Array.prototype.every which is missing from PhantomJS.
## Installation
```
npm install --save-dev phantomjs-polyfill-every
```## Usage
```
require('phantomjs-polyfill')
```## Usage with Karma
Include the polyfill directly in the files list of your karma.conf
```
...
files: [
'./node_modules/phantomjs-polyfill-every/every-polyfill.js',
...
]
...
```