HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/root/usr/share/doc/node-get-value/examples/
Upload File :
Current File : //proc/1991111/root/usr/share/doc/node-get-value/examples/keys-with-dots.js
const get = require('..');

console.log(get({ files: { 'foo/bar.md': { b: 'c' } } }, 'files.foo/bar.md'));
//=> { b: c }

console.log(get({ 'a.b': { c: 'd' } }, 'a.b.c'));
//=> 'd'

console.log(get({ 'a.b': { c: { 'd.e': 'f' } } }, 'a.b.c.d.e'));
//=> 'f'