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    
chain-able-deps / dist / typings / util / simpleKindOf.d.ts
Size: Mime:
declare const _default: (x: any) => string;
/**
 * @desc when Array -> 'array'
 *       when null -> 'null'
 *       else `typeof x`
 *
 * @memberOf util
 * @since 4.0.0
 *
 * @param  {any} x value for type
 * @return {string} type
 *
 * @example
 *
 *   simpleKindOf([]) //=> 'array'
 *   simpleKindOf(null) //=> 'null'
 *   simpleKindOf({}) //=> 'object'
 *
 */
export default _default;