Sha256: a67a40a7059abf4e525c4dafbc7fd38b6abd32aee669e9426e272831140f1f7b
Contents?: true
Size: 357 Bytes
Versions: 29
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
29 entries across 19 versions & 7 rubygems