Files
lodash/npm-package/_castRest.js
Mathias Bynens 2e1c0f22f4 Add npm-package
2020-07-08 19:10:23 +02:00

15 lines
348 B
JavaScript

var baseRest = require('./_baseRest');
/**
* A `baseRest` alias which can be replaced with `identity` by module
* replacement plugins.
*
* @private
* @type {Function}
* @param {Function} func The function to apply a rest parameter to.
* @returns {Function} Returns the new function.
*/
var castRest = baseRest;
module.exports = castRest;