Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

mac-regex

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Issues
File Explorer

Advanced tools

mac-regex

A regular expression for MAC addresses.

    1.0.0latest
    GitHub

Version published
Maintainers
1
Weekly downloads
587
decreased by-26.16%

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

Last updated on 29 Dec 2014

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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