Verification if url is localhost or not.
npm install @andreoneti/islocalhostnpm i @andreoneti/islocalhost
oryarn add @andreoneti/islocalhost
``javascript
const { isLocalhost } = require('@andreoneti/islocalhost');
isLocalhost("localhost"); // true
isLocalhost("127.0.0.1"); // true
isLocalhost("google.com"); // false
`
OR
`javascript
import { isLocalhost } from '@andreoneti/islocalhost';
isLocalhost("localhost"); // true
isLocalhost("127.0.0.1"); // true
isLocalhost("google.com"); // false
``