This is how `JSON.parse` works, and it allows one to bypass setters on `Object.prototype` such as `__proto__`. Compare: ``` > require('js-yaml').safeLoad('{"__proto__": "test"}').__proto__ {} > JSON.parse('{"__proto__": "test"}').__proto__ 'test' ```