Sha256: c3ea21c72901df957882f4c0405187bb539978cc2bb359b07aa9fd080d148aad
Contents?: true
Size: 357 Bytes
Versions: 46
Compression:
Stored size: 357 Bytes
Contents
"use strict"; module.exports = function (t, a) { var o = { first: 1, second: 4 }, r1, r2; o = Object.create(o, { third: { value: null } }); o.first = 2; o = Object.create(o); o.fourth = 3; r1 = t(o); r1.sort(); r2 = ["first", "second", "third", "fourth"] .concat(Object.getOwnPropertyNames(Object.prototype)); r2.sort(); a.deep(r1, r2); };
Version data entries
46 entries across 46 versions & 3 rubygems