Regular expression for matching .onion Tor links (v2 & v3).
Install
~ ❯❯❯ npm install onion-regex
Usage
const onionRegex = ; ;//=> true ;//=> false onionRegex;//=> true onionRegex;//=> true 'nodejsrocks 3g2upl4pq6kufc4m.onion rainbow facebookcorewwwi.onion';//=> ['3g2upl4pq6kufc4m.onion', 'facebookcorewwwi.onion']
API
onionRegex([options])
Returns a regex for matching onion links.
onionRegex.v2([options])
Returns a regex for matching version 2 (v2) onion links.
onionRegex.v3([options])
Returns a regex for matching version 3 (v3) onion links.
options.exact
Type: boolean
Default: false
(Matches any onion link in a string)
Only match an exact string. Useful with RegExp#test()
to check if a string is an onion link.
License
MIT © Nikolaos Kamarinakis