0.0.3 • Published 4 years ago

@andreoneti/islocalhost v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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