dotprop

v2.0.0
Get property value by dot notation
dot-prop dot json property value notation object get-prop obj and 8 more...

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

🕉

npm i dotprop

Metadata

  • MIT
  • Whatever
  • Dima Yv
  • released 6/20/2024

Downloads

Maintainers

Dima Yv