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

10 lines
186 B
JavaScript
Raw Normal View History

2019-06-28 03:46:48 +02:00
module.exports = {
2019-07-09 02:46:08 +02:00
sortByPrefixLength : function (a, b) {
const netA = a.split("/")[1];
const netB = b.split("/")[1];
return netA - netB;
}
2019-06-28 03:46:48 +02:00
};