# phantomjs-polyfill-plus **Repository Path**: mirrors_bokuweb/phantomjs-polyfill-plus ## Basic Information - **Project Name**: phantomjs-polyfill-plus - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Function.prototype.bind polyfill for PhantomJS This is a polyfill for function.prototype.bind which is missing from [PhantomJS](http://phantomjs.org/). ## Installation ``` npm install --save-dev phantomjs-polyfill ``` ## Usage ``` require('phantomjs-polyfill') ``` ### Usage with Karma Include the polyfill directly in the files list of your karma.conf ``` ... files: [ './node_modules/phantomjs-polyfill/bind-polyfill.js', ... ] ...