it('should not indirectly set Object properties', () => {
    const o = {};
    const ob = { o };
    set(o, 'ob.constructor.a', 1);
    should(ob.a).be.eql(undefined);