in common_landings.js [41:68]
function checkIsBuildID(val) {
let isBuildID = true;
try {
let res = parseBuildID(val);
if (
isNaN(res.year) ||
isNaN(res.month) ||
isNaN(res.day) ||
isNaN(res.hour) ||
isNaN(res.minute) ||
isNaN(res.second) ||
res.year < 2000 ||
res.month < 0 ||
res.month > 12 ||
res.day < 0 ||
res.day > 31 ||
res.hour < 0 ||
res.hour > 24
) {
isBuildID = false;
}
} catch (ex) {
isBuildID = false;
}
return isBuildID;
}