UNPKG

ip-restrictor

Version:

Easily allow or block internal IPs in Node.js and Express apps. A simple middleware for IP filtering and network security.

6 lines (4 loc) 134 B
const blockOnlyStandalone = (blockedIPs, ip) => { return !blockedIPs.includes(ip); }; module.exports = blockOnlyStandalone;