1.0.0 • Published 3 years ago

isroblox v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Table of contents

About

1.1kB & dependency-free Node.js module to check if an IP belongs to Roblox.

Installation

Use the package manager npm to install isroblox:

npm install isroblox

Usage

const isroblox = require("isroblox");

isroblox.check("128.116.72.112")
    .then((isRoblox) => {
        if (isRoblox) {
            console.log("IP belongs to Roblox!");
        } else {
            console.log("IP does not belong to Roblox!");
        }
    })
    .catch((err) => {
        throw err;
    });

Links

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.