brandonhorst / elliptical-email

Lacona Phrase for matching an email address

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Lacona Phrase for matching an email address

License:MIT License


Languages

Language:JavaScript 100.0%