芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/node_modules/axios/lib/helpers/spread.js
'use strict'; /** * Syntactic sugar for invoking a function and expanding an array for arguments. * * Common use case would be to use `Function.prototype.apply`. * * ```js * function f(x, y, z) {} * var args = [1, 2, 3]; * f.apply(null, args); * ``` * * With `spread` this example can be re-written. * * ```js * spread(function(x, y, z) {})([1, 2, 3]); * ``` * * @param {Function} callback * * @returns {Function} */ export default function spread(callback) { return function wrap(arr) { return callback.apply(null, arr); }; }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage