Sha256: 10d918c581051e4963f178fe1e5280cac983b300a3b4d89ab2ce405ac6e8be15
Contents?: true
Size: 341 Bytes
Versions: 29
Compression:
Stored size: 341 Bytes
Contents
'use strict'; module.exports = function (t, a) { var x = {}, y = {} , o = { foo: 'bar', raz: x, trzy: 'cztery', five: '6' }; a(t(o, 'bar'), 'foo', "First property"); a(t(o, 6), null, "Primitive that's not there"); a(t(o, x), 'raz', "Object"); a(t(o, y), null, "Object that's not there"); a(t(o, '6'), 'five', "Last property"); };
Version data entries
29 entries across 19 versions & 7 rubygems