1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-09 08:10:43 +00:00
notes/node_modules/lodash/_castRest.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05: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;