set a new property in a js object and return the value of the given property
npm install set-prop-get-valueset a new property in a js object and return the value of the given property
!Code Coverage 100%

const setProp = require('set-prop-get-value')setProp(object, prop_name, prop_value)
``js
const setProp = require('set-prop-get-value')
let someObject = {}
setProp(someObject, 'hello', 'world')
// should return worldsomeObject
// and now should have the new prop hello: 'world'
``