Skip to content

Instantly share code, notes, and snippets.

@Chiff
Chiff / DeepObject.ts
Last active October 7, 2018 09:42
DeepObject allows you to `set` and `get` values in object by strings without eval.
// yarn add gist:5ceba1081bbf0162b98860b34a511a92
// npm install gist:5ceba1081bbf0162b98860b34a511a92
export const DeepObject = {
set: setDeep,
get: getDeep
};
// https://stackoverflow.com/a/6491621
function getDeep(obj: Object, path: string) {