paretojs
Version:
An extremely small, intuitive and fast functional utility library for JavaScript
32 lines (30 loc) • 658 B
text/typescript
import chunk from "./extra/chunk";
import compose from "./extra/compose";
import curry from "./extra/curry";
import debounce from "./extra/debounce";
import deepCopy from "./extra/deepCopy";
import flatMap from "./extra/flatMap";
import flatten from "./extra/flatten";
import get from "./extra/get";
import matches from "./extra/matches";
import memoize from "./extra/memoize";
import pipe from "./extra/pipe";
import prop from "./extra/prop";
import sort from "./extra/sort";
import tail from "./extra/tail";
export {
chunk,
compose,
curry,
debounce,
deepCopy,
flatMap,
flatten,
get,
matches,
memoize,
pipe,
prop,
sort,
tail
};