normalize-email-or-url

Return normalized email or url from a string.

Usage no npm install needed!

<script type="module">
  import normalizeEmailOrUrl from 'https://cdn.skypack.dev/normalize-email-or-url';
</script>

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('joe@example.com')
// => email = joe@example.com