mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-07 17:32:25 +08:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
|
|
'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);
|