mirror of
https://github.com/julia-actions/julia-buildpkg.git
synced 2026-02-12 09:26:54 +08:00
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
'use strict';
|
|
|
|
var bind = require('function-bind');
|
|
|
|
var GetIntrinsic = require('../GetIntrinsic');
|
|
|
|
var $Function = GetIntrinsic('%Function%');
|
|
var $apply = $Function.apply;
|
|
var $call = $Function.call;
|
|
|
|
module.exports = function callBind() {
|
|
return bind.apply($call, arguments);
|
|
};
|
|
|
|
module.exports.apply = function applyBind() {
|
|
return bind.apply($apply, arguments);
|
|
};
|