Background: The module query-string is for example able to parse key=value&hello=universe to an object {key: \'value\', hello: \'univ
key=value&hello=universe
{key: \'value\', hello: \'univ
I can't say I've ever done this before, but here's one way to do it
let bastard = Object.create(null); bastard.father = 'vader'; let adopted = Object.assign({}, bastard); console.log(adopted.hasOwnProperty('father')); // => true