mirror of https://github.com/jkjoy/sunpeiwen.git
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
|
var crc = require('./lib/crc16');
|
||
|
|
||
|
var other = crc("123");
|
||
|
var crcRes=[];
|
||
|
crcRes.push(other);
|
||
|
console.log(other);
|
||
|
console.log(crcRes.indexOf(other));
|