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 / obj / index.ts

import isBlankObj from './check/isBlankObj'
import isObj from './check/isObj'
import isObjNotNull from './check/isObjNotNull'
import isObjPlain from './check/isObjPlain'
import isObjPure from './check/isObjPure'
import isObjTypeof from './check/isObjTypeof'
import isObjWithKeys from './check/isObjWithKeys'
// cast
import toObj from './cast/toObj'
import fromArrayToObj from './cast/fromArrayToObj'
import fromCollectionToObj from './cast/fromCollectionToObj'
import toPlainObj from './cast/toPlainObj'
// import fromSetToObj from './cast/fromSetToObj'
// import fromMapToObj from './cast/fromMapToObj'

export {
  isBlankObj,
  isObj,
  isObjNotNull,
  isObjPlain,
  isObjPure,
  isObjPure as isPureObj,
  isObjTypeof,
  isObjTypeof as isTypeofObj,
  isObjWithKeys,
  fromArrayToObj,
  fromCollectionToObj,
  toObj,
  toPlainObj,
}
export {
  fromArrayToObj as arrayToObj,
  fromCollectionToObj as fromMapToObj,
  fromCollectionToObj as fromSetToObj,
  fromCollectionToObj as mapToObj,
  fromCollectionToObj as setToObj,
  fromCollectionToObj as collectionToObj,
}
export {
  toObj as toObject,
  isBlankObj as isBlankObject,
  isObj as isObject,
  isObjNotNull as isObjectNotNull,
  isObjPlain as isObjectPlain,
  isObjPlain as isPlainObject,
  isObjPure as isObjectPure,
  isObjPure as isPureObject,
  isObjTypeof as isObjectTypeof,
  isObjTypeof as isTypeofObject,
  isObjWithKeys as isObjectWithKeys,
  fromArrayToObj as fromArrayToObject,
  fromArrayToObj as fromPairsToObj,
  fromCollectionToObj as fromCollectionToObject,
  toPlainObj as toPlainObject,
  toPlainObj as toObjectPlain,
}