Mostly from https://github.com/nodejs/io.js/issues/2031#issuecomment-114347314 Consider following code: ``` js let obj = {foo: 1}; JSON.stringifyAsync(obj, result => console.log(result)); delete obj.foo ``` There could be a thread collision issue here. What can be done?