UNPKG

@hgargg-0710/one

Version:

A tiny npm library purposed for providing beautiful solutions to frequent miniature (one-line/one-expression) tasks for various JS datatypes.

6 lines (5 loc) 189 B
import { ObjectKey } from "./main.js"; /** * Creates a new `Map` from keys and values of the given object, returning it */ export declare const toMap: (x: object) => Map<ObjectKey, any>;