Package Exports
- get-ip-range
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-ip-range) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
get-ip-range
Installation
npm install --save get-ip-range
Usage
For CIDR notation:
const getIPRange = require('get-ip-range');
getIPRange('192.168.1.134/29');
// Returns an array of 6 IP addressesFor two IP addresses:
const getIPRange = require('get-ip-range');
getIPRange('192.168.1.129', '192.168.1.134');
// Returns an array of 6 IP addresses
