@andreoneti/islocalhost
v0.0.3
Published
Verification if url is localhost or not.
Downloads
14
Readme
Is Localhost
Installation
npm i @andreoneti/islocalhost
or
yarn add @andreoneti/islocalhost
Use
const { isLocalhost } = require('@andreoneti/islocalhost');
isLocalhost("localhost"); // true
isLocalhost("127.0.0.1"); // true
isLocalhost("google.com"); // false
OR
import { isLocalhost } from '@andreoneti/islocalhost';
isLocalhost("localhost"); // true
isLocalhost("127.0.0.1"); // true
isLocalhost("google.com"); // false