reference

This commit is contained in:
SowinskiBraeden committed 2025-03-18 22:46:53 -07:00
commit aff3c348c4
908 files changed
+93185

No files matched your search

+10
View File
@@ -0,0 +1,10 @@
'use strict';
var bind = require('function-bind');
var $apply = require('./functionApply');
var $call = require('./functionCall');
var $reflectApply = require('./reflectApply');
/** @type {import('./actualApply')} */
module.exports = $reflectApply || bind.call($call, $apply);