Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / chain-able-deps   js

Repository URL to install this package:

Version: 6.0.4 

/ src / array / index.ts

import flatten from './flatten'
import arrayOfIndexes from './arrayOfIndexes'
import concat from './concat'
import concatMutate from './concatMutate'
import flattenRecursive from './flattenRecursive'
import indexOf from './indexOf'
import insertAtIndex from './insertAtIndex'
import preAllocate from './preAllocate'
import shuffle from './shuffle'
import spliceIn from './spliceIn'
import spliceOut from './spliceOut'
import uniq from './uniq'

export {
  uniq,
  flatten,
  arrayOfIndexes,
  concat as concatArray,
  concatMutate,
  flattenRecursive,
  indexOf,
  insertAtIndex,
  preAllocate,
  shuffle,
  spliceIn,
  spliceOut,
}