You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

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.


Version published
Weekly downloads
958
decreased by-23.97%
Maintainers
1
Install size
5.79 kB
Created
Weekly downloads
 

Readme

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

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

Crafted with <3 by John Otander.

Keywords

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc