bingo-functional-js
Version:
A port of the PHP bingo-functional library
74 lines (72 loc) • 1.66 kB
JavaScript
const any = require('./any')
const dropLeft = require('./dropLeft')
const dropRight = require('./dropRight')
const every = require('./every')
const extend = require('./extend')
const head = require('./head')
const indexOf = require('./indexOf')
const last = require('./last')
const pick = require('./pick')
const pluck = require('./pluck')
const reverse = require('./reverse')
const tail = require('./tail')
const sizeOf = require('./sizeOf')
const map = require('./map')
const filter = require('./filter')
const fold = require('./fold')
const partition = require('./partition')
const partitionBy = require('./partitionBy')
const fromPairs = require('./fromPairs')
const toPairs = require('./toPairs')
const keyExists = require('./keyExists')
const keysExist = require('./keysExist')
const min = require('./min')
const max = require('./max')
const foldRight = require('./foldRight')
const mean = require('./mean')
const flatten = require('./flatten')
const mapDeep = require('./mapDeep')
const reject = require('./reject')
const fill = require('./fill')
const pluckPath = require('./pluckPath')
const indexesOf = require('./indexesOf')
const intersects = require('./intersects')
const countOfKey = require('./countOfKey')
const countOfValue = require('./countOfValue')
module.exports = {
any,
min,
max,
mean,
reject,
foldRight,
mapDeep,
every,
dropLeft,
dropRight,
extend,
head,
indexOf,
last,
pick,
pluck,
reverse,
tail,
map,
sizeOf,
filter,
fold,
toPairs,
keyExists,
keysExist,
fromPairs,
partition,
partitionBy,
flatten,
fill,
pluckPath,
indexesOf,
intersects,
countOfKey,
countOfValue,
}