[d565449] | 1 | # function-bind <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
|
---|
| 2 |
|
---|
| 3 | [![github actions][actions-image]][actions-url]
|
---|
| 4 | <!--[![coverage][codecov-image]][codecov-url]-->
|
---|
| 5 | [![dependency status][deps-svg]][deps-url]
|
---|
| 6 | [![dev dependency status][dev-deps-svg]][dev-deps-url]
|
---|
| 7 | [![License][license-image]][license-url]
|
---|
| 8 | [![Downloads][downloads-image]][downloads-url]
|
---|
| 9 |
|
---|
| 10 | [![npm badge][npm-badge-png]][package-url]
|
---|
| 11 |
|
---|
| 12 | Implementation of function.prototype.bind
|
---|
| 13 |
|
---|
| 14 | Old versions of phantomjs, Internet Explorer < 9, and node < 0.6 don't support `Function.prototype.bind`.
|
---|
| 15 |
|
---|
| 16 | ## Example
|
---|
| 17 |
|
---|
| 18 | ```js
|
---|
| 19 | Function.prototype.bind = require("function-bind")
|
---|
| 20 | ```
|
---|
| 21 |
|
---|
| 22 | ## Installation
|
---|
| 23 |
|
---|
| 24 | `npm install function-bind`
|
---|
| 25 |
|
---|
| 26 | ## Contributors
|
---|
| 27 |
|
---|
| 28 | - Raynos
|
---|
| 29 |
|
---|
| 30 | ## MIT Licenced
|
---|
| 31 |
|
---|
| 32 | [package-url]: https://npmjs.org/package/function-bind
|
---|
| 33 | [npm-version-svg]: https://versionbadg.es/Raynos/function-bind.svg
|
---|
| 34 | [deps-svg]: https://david-dm.org/Raynos/function-bind.svg
|
---|
| 35 | [deps-url]: https://david-dm.org/Raynos/function-bind
|
---|
| 36 | [dev-deps-svg]: https://david-dm.org/Raynos/function-bind/dev-status.svg
|
---|
| 37 | [dev-deps-url]: https://david-dm.org/Raynos/function-bind#info=devDependencies
|
---|
| 38 | [npm-badge-png]: https://nodei.co/npm/function-bind.png?downloads=true&stars=true
|
---|
| 39 | [license-image]: https://img.shields.io/npm/l/function-bind.svg
|
---|
| 40 | [license-url]: LICENSE
|
---|
| 41 | [downloads-image]: https://img.shields.io/npm/dm/function-bind.svg
|
---|
| 42 | [downloads-url]: https://npm-stat.com/charts.html?package=function-bind
|
---|
| 43 | [codecov-image]: https://codecov.io/gh/Raynos/function-bind/branch/main/graphs/badge.svg
|
---|
| 44 | [codecov-url]: https://app.codecov.io/gh/Raynos/function-bind/
|
---|
| 45 | [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/Raynos/function-bind
|
---|
| 46 | [actions-url]: https://github.com/Raynos/function-bind/actions
|
---|