* Compile `arr` elements into range subnets.
(arr: any[])
| 65 | * Compile `arr` elements into range subnets. |
| 66 | */ |
| 67 | function compileRangeSubnets(arr: any[]) { |
| 68 | const rangeSubnets = new Array(arr.length) |
| 69 | for (let i = 0; i < arr.length; i++) rangeSubnets[i] = parseIPNotation(arr[i]) |
| 70 | |
| 71 | return rangeSubnets |
| 72 | } |
| 73 | /** |
| 74 | * Compile range subnet array into trust function. |
| 75 | * |
no test coverage detected