Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
exotic / src / types / function / index.ts
Size: Mime:
import isFunction from './check/isFunction'
import isFunctionWithKeys from './check/isFunctionWithKeys'
import isAsync from './check/isAsync'
import isAsyncish from './check/isAsyncish'
import isPromise from './check/isPromise'
import isGenerator from './check/isGenerator'
//
import toFunction from './cast/toFunction'
import toTestable from './cast/toTestable'

// export toCoerceWrap from './cast/coerce/toCoerceWrap'

export {
  isFunction,
  isFunctionWithKeys,
  isAsync,
  isAsyncish,
  isPromise,
  isGenerator,
  toFunction,
  toTestable,
}