You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
277 B

# ip
```js
// usage
chance.mac()
chance.mac({delimiter: '-'})
```
Return a random MAC Address (EUI-48).
```js
chance.mac()
=> '08:c2:88:ad:49:23'
```
Optionally specify a specific delimiter between octets.
```js
chance.domain({delimiter: '-'})
=> '00-0d-b9-52-f2-f0'
```