1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00
Files
nttgin-BGPalerter/ipUtils.js
2019-07-11 13:12:05 +02:00

10 lines
186 B
JavaScript

module.exports = {
sortByPrefixLength : function (a, b) {
const netA = a.split("/")[1];
const netB = b.split("/")[1];
return netA - netB;
}
};