Socket
Socket
Sign inDemoInstall

neo-regex

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    neo-regex

Regular expression for matching NEO addresses.


Version published
Weekly downloads
198
increased by33.78%
Maintainers
1
Install size
5.35 kB
Created
Weekly downloads
 

Readme

Source

neo-regex Build Status XO code style

Regular expression for matching NEO addresses

Install

~ ❯❯❯ npm install neo-regex

Usage

const neoRegex = require('neo-regex');

neoRegex().test('nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i');
//=> true

neoRegex({exact: true}).test('nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i foo');
//=> false

neoRegex({exact: true}).test('AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i');
//=> true

'nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i unicorn AR4QmqYENiZAD6oXe7ftm6eDcwtHk7rVTT rainbow'.match(neoRegex());
//=> ['AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i', 'AR4QmqYENiZAD6oXe7ftm6eDcwtHk7rVTT']

API

neoRegex([options])

Returns a regex for matching NEO addresses.

options.exact

Type: boolean
Default: false (Matches any NEO address in a string)

Only match an exact string. Useful with RegExp#test() to check if a string is an NEO address.

  • ethereum-regex - Regular expression for matching Ethereum (ETH) addresses.
  • litecoin-regex - Regular expression for matching Litecoin (LTC) addresses.
  • bitcoincash-regex - Regular expression for matching Bitcoin Cash (BCH) addresses.
  • monero-regex - Regular expression for matching Monero (XMR) addresses.
  • dash-regex - Regular expression for matching Dash addresses.
  • ripple-regex - Regular expression for matching Ripple (XRP) addresses.
  • dogecoin-regex - Regular expression for matching Dogecoin (DOGE) addresses.

License

MIT © Nikolaos Kamarinakis

Keywords

FAQs

Last updated on 08 Aug 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc