UNPKG

ip-utils

Version:

Library of useful functions related to IP

5 lines (4 loc) 109 B
export function cidrToMask(subnet) { let split = subnet.split('/'); return parseInt(split[1], 10); }