11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
'use strict';
|
|
|
|
var bind = require('function-bind');
|
|
var $apply = require('call-bind-apply-helpers/functionApply');
|
|
var actualApply = require('call-bind-apply-helpers/actualApply');
|
|
|
|
/** @type {import('call-bind-apply-helpers/applyBind')} */
|
|
module.exports = function applyBind() {
|
|
return actualApply(bind, $apply, arguments);
|
|
};
|