mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
18 lines
488 B
JavaScript
18 lines
488 B
JavaScript
'use strict';
|
|
|
|
var bind = require('function-bind');
|
|
|
|
var GetIntrinsic = require('../GetIntrinsic');
|
|
|
|
var $apply = GetIntrinsic('%Function.prototype.apply%');
|
|
var $call = GetIntrinsic('%Function.prototype.call%');
|
|
var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
|
|
|
|
module.exports = function callBind() {
|
|
return $reflectApply(bind, $call, arguments);
|
|
};
|
|
|
|
module.exports.apply = function applyBind() {
|
|
return $reflectApply(bind, $apply, arguments);
|
|
};
|