mirror of
https://github.com/nttgin/BGPalerter.git
synced 2024-05-19 06:50:08 +00:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
module.exports = {
|
|
|
|
sortByPrefixLength : function (a, b) {
|
|
const netA = a.split("/")[1];
|
|
const netB = b.split("/")[1];
|
|
|
|
return netA - netB;
|
|
}
|
|
|
|
}; |