mirror of
https://github.com/Gerald-Ha/HodlEye-Crypto-Price-Tracker.git
synced 2025-06-25 17:16:27 +00:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
'use strict';
|
|
|
|
var bind = require('function-bind');
|
|
var $apply = require('./functionApply');
|
|
var actualApply = require('./actualApply');
|
|
|
|
/** @type {import('./applyBind')} */
|
|
module.exports = function applyBind() {
|
|
return actualApply(bind, $apply, arguments);
|
|
};
|