Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dogecoin-regex

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dogecoin-regex

Regular expression for matching Dogecoin (DOGE) addresses.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
93
decreased by-40.38%
Maintainers
1
Weekly downloads
 
Created
Source

dogecoin-regex Build Status

Regular expression for matching Dogecoin (DOGE) addresses.

Install

~ ❯❯❯ npm install dogecoin-regex

Usage

const dogecoinRegex = require('dogecoin-regex');

dogecoinRegex().test('nodejsrocks DANHz6EQVoWyZ9rER56DwTXHWUxfkv9k2o');
//=> true

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

dogecoinRegex({exact: true}).test('DANHz6EQVoWyZ9rER56DwTXHWUxfkv9k2o');
//=> true

'nodejsrocks DANHz6EQVoWyZ9rER56DwTXHWUxfkv9k2o unicorn DDTtqnuZ5kfRT5qh2c7sNtqrJmV3iXYdGG rainbow'.match(dogecoinRegex());
//=> ['DANHz6EQVoWyZ9rER56DwTXHWUxfkv9k2o', 'DDTtqnuZ5kfRT5qh2c7sNtqrJmV3iXYdGG']

API

dogecoinRegex([options])

Returns a regex for matching Dogecoin (DOGE) addresses.

options.exact

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

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

License

MIT © Nikolaos Kamarinakis

Keywords

FAQs

Package last updated on 23 Feb 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc