_compare-by-length.js 165 B

1234567
  1. 'use strict';
  2. module.exports = function (t, a) {
  3. var x = [4, 5, 6], y = { length: 8 }, w = {}, z = { length: 1 };
  4. a.deep([x, y, w, z].sort(t), [w, z, x, y]);
  5. };