Detalhes do pacote

dotprop

dy24.1kMIT2.0.0

Get property value by dot notation

dot-prop, dot, json, property

readme (leia-me)

dotprop test

Get property by dot notation. A short and dependable implementation.

import getProp from 'dotprop';

getProp({a: { b: { c: 1}} }, 'a.b.c') // 1
getProp([1,2,3], 2) // 3
getProp({}, 'a.b') // undefined

// recognizes arrays too
getProp({a: { b: { c: 1}} }, ['a', 'b', 'c']) // 1
getProp({a: { 'b.c': 1 }}, ['a', 'b.c']) // 1

Similar

NPM

🕉