Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
348 B
15 lines
348 B
1 year ago
|
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;
|