Repository URL to install this package:
|
Version:
1.2.8 ▾
|
/**
* @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;