This commit is contained in:
Simon Priet
2021-09-05 22:53:58 +02:00
commit 9e2991e668
17888 changed files with 1263126 additions and 0 deletions

25
node_modules/ramda/es/pair.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import _curry2 from "./internal/_curry2.js";
/**
* Takes two arguments, `fst` and `snd`, and returns `[fst, snd]`.
*
* @func
* @memberOf R
* @since v0.18.0
* @category List
* @sig a -> b -> (a,b)
* @param {*} fst
* @param {*} snd
* @return {Array}
* @see R.objOf, R.of
* @example
*
* R.pair('foo', 'bar'); //=> ['foo', 'bar']
*/
var pair =
/*#__PURE__*/
_curry2(function pair(fst, snd) {
return [fst, snd];
});
export default pair;