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 / exotic   js

Repository URL to install this package:

Version: 2.0.8 

/ src / types / array / index.ts

import isArrayTyped from './typed/isArrayTyped'
import fromBufferToUint8Array from './typed/fromBufferToUint8Array'
import isArrayBuffer from './typed/isArrayBuffer'
import toArrayFrom from './cast/toArrayFrom'
import fromArrayToDoublyLinkedList from './linkedlist/fromArrayToDoublyLinkedList'
//
import isPairs from './pairs/isPairs'
import fromSetToPairs from './pairs/fromSetToPairs'
import toPairs from './pairs/toPairs'
//
import toArr from './cast/toArr'
import toArray from './cast/toArray'
import fromIteratorToArray from './cast/fromIteratorToArray'
import fromMapToArray from './cast/fromMapToArray'
import fromSetToArray from './cast/fromSetToArray'
import fromStringToArray from './cast/fromStringToArray'
import fromAsciiToArray from './cast/fromAsciiToArray'
import fromArgumentsToArray from './cast/fromArgumentsToArray'
//
import isArray from './check/isArray'
import isArrayLike from './check/isArrayLike'
import isArrayOf from './check/isArrayOf'

export { isPairs, fromSetToPairs, toPairs }
export {
  isArrayLike as isArrayish,
  fromArrayToDoublyLinkedList,
  fromArrayToDoublyLinkedList as toFlatPairs,
  toArrayFrom as ArrayFrom,
  toArrayFrom,
  isArrayTyped,
  isArrayTyped as isTypedArray,
  fromBufferToUint8Array,
  isArrayBuffer,
}
export {
  fromIteratorToArray as iteratorToArray,
  fromStringToArray as stringToArray,
  fromArgumentsToArray as argumentsToArray,
  fromMapToArray as mapToArray,
  fromSetToArray as setToArray,
}
export {
  toArr,
  toArray,
  fromIteratorToArray,
  fromMapToArray,
  fromSetToArray,
  fromStringToArray,
  fromAsciiToArray,
  fromArgumentsToArray,
  isArray,
  isArrayLike,
  isArrayOf,
}