1
0
Fork 0

Create example.js

This commit is contained in:
Geno 2015-07-08 02:21:44 +02:00
parent 626525c078
commit 7337ae0142
1 changed files with 11 additions and 0 deletions

11
example.js Normal file
View File

@ -0,0 +1,11 @@
var ipv6calc = require('./index');
var mac = "00-11-22-33-44-55";
var ip = "2001:db8::211:22ff:fe33:4455";
console.log(ip);
console.log(ipv6calc.toMAC(ip));
console.log(mac);
console.log(ipv6calc.toIPv6(mac));
console.log(ipv6calc.fromIPv6(ip));
console.log(ipv6calc.toIPv6('2001:bf7:540:0:',mac));