🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

mac-regex

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mac-regex

A regular expression for MAC addresses.

1.0.0
latest
Source
npm
Version published
Weekly downloads
951
-7.67%
Maintainers
1
Weekly downloads
 
Created
Source

MAC Regex

Build Status

A regular expression for matching MAC addresses.

Installation

npm i --save mac-regex

Usage

var mac = require('mac-regex');

// Exact string option
mac({ exact: true }).test('aa-bb-cc-dd-ee-ff')     // => true
mac({ exact: true }).test('aa:bb:cc:dd:ee:ff')     // => true
mac({ exact: true }).test('aa:bb:cc:dd:ee:ff   ')  // => false
mac({ exact: true }).test('kljhsdf')               // => false

// Global option (default)
mac().test('aa:bb:cc:dd:ee:ff   ')  // => true
mac().test('kljhsdf')               // => false

'11:22:aa:44:55:33 11:22:aa:44:55:33'.match(mac())
// => ['11:22:aa:44:55:33', '11:22:aa:44:55:33']

Acknowledgements

License

MIT

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

Crafted with <3 by John Otander.

Keywords

mac

FAQs

Package last updated on 29 Dec 2014

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