UNPKG

2.48 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3// @ts-ignore
4var ramda_1 = require("ramda");
5var R = require("ramda");
6var L = require("./index");
7var index_1 = require("./index");
8exports.Node = index_1.Node;
9exports.List = index_1.List;
10exports.list = index_1.list;
11L.setEquals(R.equals);
12exports.prepend = ramda_1.curry(L.prepend);
13exports.append = ramda_1.curry(L.append);
14exports.pair = ramda_1.curry(L.pair);
15exports.empty = ramda_1.curry(L.empty);
16exports.repeat = ramda_1.curry(L.repeat);
17exports.length = ramda_1.curry(L.length);
18exports.first = ramda_1.curry(L.first);
19exports.last = ramda_1.curry(L.last);
20exports.nth = ramda_1.curry(L.nth);
21exports.map = ramda_1.curry(L.map);
22exports.pluck = ramda_1.curry(L.pluck);
23exports.range = ramda_1.curry(L.range);
24exports.foldl = ramda_1.curry(L.foldl);
25exports.reduce = exports.foldl;
26exports.filter = ramda_1.curry(L.filter);
27exports.reject = ramda_1.curry(L.reject);
28exports.partition = ramda_1.curry(L.partition);
29exports.join = ramda_1.curry(L.join);
30exports.foldr = ramda_1.curry(L.foldr);
31exports.reduceRight = exports.foldr;
32exports.flatten = ramda_1.curry(L.flatten);
33exports.every = ramda_1.curry(L.every);
34exports.all = exports.every;
35exports.some = ramda_1.curry(L.some);
36exports.any = exports.some;
37exports.none = ramda_1.curry(L.none);
38exports.find = ramda_1.curry(L.find);
39exports.indexOf = ramda_1.curry(L.indexOf);
40exports.findIndex = ramda_1.curry(L.findIndex);
41exports.includes = ramda_1.curry(L.includes);
42exports.contains = exports.includes;
43exports.equals = ramda_1.curry(L.equals);
44exports.concat = ramda_1.curry(L.concat);
45exports.update = ramda_1.curry(L.update);
46exports.adjust = ramda_1.curry(L.adjust);
47exports.slice = ramda_1.curry(L.slice);
48exports.take = ramda_1.curry(L.take);
49exports.takeWhile = ramda_1.curry(L.takeWhile);
50exports.dropWhile = ramda_1.curry(L.dropWhile);
51exports.takeLast = ramda_1.curry(L.takeLast);
52exports.splitAt = ramda_1.curry(L.splitAt);
53exports.remove = ramda_1.curry(L.remove);
54exports.drop = ramda_1.curry(L.drop);
55exports.dropLast = ramda_1.curry(L.dropLast);
56exports.pop = ramda_1.curry(L.pop);
57exports.init = exports.pop;
58exports.tail = ramda_1.curry(L.tail);
59exports.toArray = ramda_1.curry(L.toArray);
60exports.fromArray = ramda_1.curry(L.fromArray);
61exports.fromIterable = ramda_1.curry(L.fromIterable);
62exports.insert = ramda_1.curry(L.insert);
63exports.insertAll = ramda_1.curry(L.insertAll);
64//# sourceMappingURL=ramda.js.map
\No newline at end of file