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 / dist / types / collection / toMap.d.ts
Size: Mime:
/**
 * @since 5.0.0-beta.9
 * @memberOf cast
 *
 * @param  {*} x anything => Map
 * @return {Map}
 *
 * @example
 *   isMap(toMap({eh: true}))    //=> true
 *   toMap({eh: true}).has('eh') //=> true
 */
declare const toMap: (x: any) => Map<string, any>;
export default toMap;