elliptical-email

1.1.0 • Public • Published

lacona-phrase-email

Build Status

Lacona Phrases for matching an email-related information

Installation

npm install lacona-phrase-email

Usage

/** @jsx createElement */
import { createElement, Phrase } from 'lacona-phrase'
import { EmailAddress } from 'lacona-phrase-email'
import { Parser } from 'lacona'
 
const parser = new Parser({
  grammar: (
    <sequence>
      <literal text='email ' />
      <EmailAddress />
    </sequence>
  )
})
 
parser.parseArray('email app@lacona.io')
/* [{
  words: [
    {text: 'email ', input: true},
    {text: 'app@lacona.io', input: true, argument='email'}
}] */

Reference

EmailAddress

Matches standard user@domain.tld email addresses.

Result

String - the email address

Props

  • argument: String - the text for the label

Package Sidebar

Install

npm i elliptical-email

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • brandonhorst