Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634736 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind

test/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/test/
1 Items
  • index.js
  • .github/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/.github/
    2 Items
  • SECURITY.md
  • FUNDING.yml
  • CHANGELOG.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/CHANGELOG.md
    140 Views
    0 Comments
    # Changelog

    All notable changes to this project will be documented in this file.

    The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

    ## [v1.1.2](https://github.com/ljharb/function-bind/compare/v1.1.1...v1.1.2) - 2023-10-12
    README.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/README.md
    137 Views
    0 Comments
    # function-bind <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

    [![github actions][actions-image]][actions-url]
    <!--[![coverage][codecov-image]][codecov-url]-->
    [![dependency status][deps-svg]][deps-url]
    [![dev dependency status][dev-deps-svg]][dev-deps-url]
    [![License][license-image]][license-url]
    [![Downloads][downloads-image]][downloads-url]
    index.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/index.js
    129 Views
    0 Comments
    'use strict';

    var implementation = require('./implementation');

    module.exports = Function.prototype.bind || implementation;

    LICENSE cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/LICENSE
    204 Views
    0 Comments
    Media file
    package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/package.json
    107 Views
    0 Comments
    {
    "name": "function-bind",
    "version": "1.1.2",
    "description": "Implementation of Function.prototype.bind",
    "keywords": [
    "function",
    "bind",
    "shim",
    implementation.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/implementation.js
    127 Views
    0 Comments
    'use strict';

    /* eslint no-invalid-this: 1 */

    var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
    var toStr = Object.prototype.toString;
    var max = Math.max;
    var funcType = '[object Function]';