mirror of https://github.com/jkjoy/sunpeiwen.git
21 lines
296 B
JavaScript
21 lines
296 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var crcRes = [];
|
||
|
|
||
|
let checKCrc = function(res) {
|
||
|
if (crcRes.indexOf(res) > -1) {
|
||
|
res++;
|
||
|
return checKCrc(res);
|
||
|
} else {
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
let thisAdd = function(value) {
|
||
|
crcRes.push(value);
|
||
|
}
|
||
|
|
||
|
exports.add = thisAdd;
|
||
|
exports.check = checKCrc;
|