CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
actualApply.js11 linesDownload Raw Back to call-bind-apply-helpers
1'use strict';2 3var bind = require('function-bind');4 5var $apply = require('./functionApply');6var $call = require('./functionCall');7var $reflectApply = require('./reflectApply');8 9/** @type {import('./actualApply')} */10module.exports = $reflectApply || bind.call($call, $apply);11