r3-v2/node_modules/es5-ext/array/#/_compare-by-length.js

8 lines
222 B
JavaScript
Raw Normal View History

2020-02-27 15:24:35 +01:00
// Used internally to sort array of lists by length
"use strict";
var toPosInt = require("../../number/to-pos-integer");
module.exports = function (arr1, arr2) { return toPosInt(arr1.length) - toPosInt(arr2.length); };