3 module.exports = function (t, a) {
5 , o = { foo: 'bar', raz: x, trzy: 'cztery', five: '6' };
7 a(t(o, 'bar'), 'foo', "First property");
8 a(t(o, 6), null, "Primitive that's not there");
9 a(t(o, x), 'raz', "Object");
10 a(t(o, y), null, "Object that's not there");
11 a(t(o, '6'), 'five', "Last property");