update
This commit is contained in:
parent
d9becc67b6
commit
9308795b8b
964 changed files with 104265 additions and 16 deletions
49
node_modules/ramda/src/intersperse.js
generated
vendored
Normal file
49
node_modules/ramda/src/intersperse.js
generated
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
var _checkForMethod =
|
||||
/*#__PURE__*/
|
||||
require("./internal/_checkForMethod");
|
||||
|
||||
var _curry2 =
|
||||
/*#__PURE__*/
|
||||
require("./internal/_curry2");
|
||||
/**
|
||||
* Creates a new list with the separator interposed between elements.
|
||||
*
|
||||
* Dispatches to the `intersperse` method of the second argument, if present.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.14.0
|
||||
* @category List
|
||||
* @sig a -> [a] -> [a]
|
||||
* @param {*} separator The element to add to the list.
|
||||
* @param {Array} list The list to be interposed.
|
||||
* @return {Array} The new list.
|
||||
* @example
|
||||
*
|
||||
* R.intersperse('a', ['b', 'n', 'n', 's']); //=> ['b', 'a', 'n', 'a', 'n', 'a', 's']
|
||||
*/
|
||||
|
||||
|
||||
var intersperse =
|
||||
/*#__PURE__*/
|
||||
_curry2(
|
||||
/*#__PURE__*/
|
||||
_checkForMethod('intersperse', function intersperse(separator, list) {
|
||||
var out = [];
|
||||
var idx = 0;
|
||||
var length = list.length;
|
||||
|
||||
while (idx < length) {
|
||||
if (idx === length - 1) {
|
||||
out.push(list[idx]);
|
||||
} else {
|
||||
out.push(list[idx], separator);
|
||||
}
|
||||
|
||||
idx += 1;
|
||||
}
|
||||
|
||||
return out;
|
||||
}));
|
||||
|
||||
module.exports = intersperse;
|
Loading…
Add table
Add a link
Reference in a new issue