UNPKG

2.96 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.isList = ramda_1.curry(L.isList);
14exports.append = ramda_1.curry(L.append);
15exports.of = ramda_1.curry(L.of);
16exports.pair = ramda_1.curry(L.pair);
17exports.empty = ramda_1.curry(L.empty);
18exports.repeat = ramda_1.curry(L.repeat);
19exports.times = ramda_1.curry(L.times);
20exports.length = ramda_1.curry(L.length);
21exports.first = ramda_1.curry(L.first);
22exports.last = ramda_1.curry(L.last);
23exports.nth = ramda_1.curry(L.nth);
24exports.map = ramda_1.curry(L.map);
25exports.forEach = ramda_1.curry(L.forEach);
26exports.pluck = ramda_1.curry(L.pluck);
27exports.range = ramda_1.curry(L.range);
28exports.foldl = ramda_1.curry(L.foldl);
29exports.reduce = exports.foldl;
30exports.filter = ramda_1.curry(L.filter);
31exports.reject = ramda_1.curry(L.reject);
32exports.partition = ramda_1.curry(L.partition);
33exports.join = ramda_1.curry(L.join);
34exports.foldr = ramda_1.curry(L.foldr);
35exports.reduceRight = exports.foldr;
36exports.ap = ramda_1.curry(L.ap);
37exports.chain = ramda_1.curry(L.chain);
38exports.flatten = ramda_1.curry(L.flatten);
39exports.every = ramda_1.curry(L.every);
40exports.all = exports.every;
41exports.some = ramda_1.curry(L.some);
42exports.any = exports.some;
43exports.none = ramda_1.curry(L.none);
44exports.find = ramda_1.curry(L.find);
45exports.indexOf = ramda_1.curry(L.indexOf);
46exports.findIndex = ramda_1.curry(L.findIndex);
47exports.includes = ramda_1.curry(L.includes);
48exports.contains = exports.includes;
49exports.equals = ramda_1.curry(L.equals);
50exports.concat = ramda_1.curry(L.concat);
51exports.update = ramda_1.curry(L.update);
52exports.adjust = ramda_1.curry(L.adjust);
53exports.slice = ramda_1.curry(L.slice);
54exports.take = ramda_1.curry(L.take);
55exports.takeWhile = ramda_1.curry(L.takeWhile);
56exports.dropWhile = ramda_1.curry(L.dropWhile);
57exports.takeLast = ramda_1.curry(L.takeLast);
58exports.splitAt = ramda_1.curry(L.splitAt);
59exports.remove = ramda_1.curry(L.remove);
60exports.reverse = ramda_1.curry(L.reverse);
61exports.drop = ramda_1.curry(L.drop);
62exports.dropLast = ramda_1.curry(L.dropLast);
63exports.pop = ramda_1.curry(L.pop);
64exports.init = exports.pop;
65exports.tail = ramda_1.curry(L.tail);
66exports.toArray = ramda_1.curry(L.toArray);
67exports.fromArray = ramda_1.curry(L.fromArray);
68exports.fromIterable = ramda_1.curry(L.fromIterable);
69exports.insert = ramda_1.curry(L.insert);
70exports.insertAll = ramda_1.curry(L.insertAll);
71exports.zip = ramda_1.curry(L.zip);
72exports.zipWith = ramda_1.curry(L.zipWith);
73exports.sort = ramda_1.curry(L.sort);
74exports.sortWith = ramda_1.curry(L.sortWith);
75exports.sortBy = ramda_1.curry(L.sortBy);
76//# sourceMappingURL=ramda.js.map
\No newline at end of file