normalize-email-or-url
v2.0.1
Published
Return normalized email or url from a string.
Downloads
12
Readme
normalize-email-or-url
Return normalized email or url from a string.
Installation
npm install normalize-email-or-url --save
or
yarn add normalize-email-or-url
Usage
const norm = require('normalize-email-or-url')
const { url, error } = norm('example.com')
// => url = http://example.com
const { email, error } = norm('[email protected]')
// => email = [email protected]