blob: d8343ce306d3ca49dffe2372b5beb738d06089ab [file] [log] [blame]
// Used internally to sort array of lists by length
'use strict';
var toPosInt = require('../../number/to-pos-integer');
module.exports = function (a, b) {
return toPosInt(a.length) - toPosInt(b.length);
};