UNPKG

@webqit/util

Version:

Utility functions used accross multiple JS libraries.

102 lines (99 loc) 2.33 kB
/** * @imports * "arr" category of modules. */ import _after from './after.js'; import _afterLast from './afterLast.js'; import _all from './all.js'; import _any from './any.js'; import _avg from './avg.js'; import _before from './before.js'; import _beforeLast from './beforeLast.js'; import _between from './between.js'; import _concatAfter from './concatAfter.js'; import _concatAfterLast from './concatAfterLast.js'; import _concatBefore from './concatBefore.js'; import _concatBeforeLast from './concatBeforeLast.js'; import _concatUnique from './concatUnique.js'; import _crossJoin from './crossJoin.js'; import _difference from './difference.js'; import _divide from './divide.js'; import _endsWith from './endsWith.js'; import _equals from './equals.js'; import _equals2D from './equals2D.js'; import _exclude from './exclude.js'; import _filter from './filter.js'; import _first from './first.js'; import _flatten from './flatten.js'; import _following from './following.js'; import _followingLast from './followingLast.js'; import _from from './from.js'; import _indexOfSet from './indexOfSet.js'; import _inSequence from './inSequence.js'; import _intersect from './intersect.js'; import _last from './last.js'; import _lastIndexOfSet from './lastIndexOfSet.js'; import _max from './max.js'; import _mid from './mid.js'; import _min from './min.js'; import _preceding from './preceding.js'; import _precedingLast from './precedingLast.js'; import _pushUnique from './pushUnique.js'; import _rand from './rand.js'; import _remove from './remove.js'; import _replace from './replace.js'; import _slice from './slice.js'; import _sort from './sort.js'; import _startsWith from './startsWith.js'; import _sum from './sum.js'; import _unique from './unique.js'; /** * @exports */ export { _after, _afterLast, _all, _any, _avg, _before, _beforeLast, _between, _concatAfter, _concatAfterLast, _concatBefore, _concatBeforeLast, _concatUnique, _crossJoin, _difference, _divide, _endsWith, _equals, _equals2D, _exclude, _filter, _first, _flatten, _following, _followingLast, _from, _indexOfSet, _inSequence, _intersect, _last, _lastIndexOfSet, _max, _mid, _min, _preceding, _precedingLast, _pushUnique, _rand, _remove, _replace, _slice, _sort, _startsWith, _sum, _unique, }