A regular expression for MAC addresses.
npm install mac-regex
A regular expression for matching MAC addresses.
```
npm i --save mac-regex
`javascript
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']
`
* Regex from
MIT
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request
Crafted with <3 by John Otander.