UNPKG

use-monaco

Version:

[![npm](https://img.shields.io/npm/v/use-monaco)](https://npm.im/use-monaco)

11 lines (10 loc) 258 B
/** * Version of 'object' from 'dot-object' that doesn't mutate the existing variable. * It converts eg. * * ```js * { 'activityBar.background': '#ddd' } * to * { activityBar: {background: '#ddd' } } */ export declare function object(obj: any): any;