source:
node_modules/axios/lib/helpers/bind.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 134 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | 'use strict'; |
2 | ||
3 | export default function bind(fn, thisArg) { | |
4 | return function wrap() { | |
5 | return fn.apply(thisArg, arguments); | |
6 | }; | |
7 | } |
Note:
See TracBrowser
for help on using the repository browser.