1.0.1 • Published 1 year ago

property-at v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Property set and get

npm install property-at
import { propertyAt } from 'property-at';

const obj = {
  a: 1,
};

// set
propertyAt(obj, ['b', 'b2'], 'b2value');

console.log(obj); // { a: 1, b: { b2: 'b2value' } }

// get
propertyAt(obj, ['b', 'b2']); // 'b2value'
1.0.1

1 year ago

1.0.0

1 year ago