@webilix/helper-library
Version:
JavaScript/TypeScript programming helper library.
10 lines • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const shared_1 = require("../../lib/shared");
const _1 = require("./_");
const valid = ['00:00:00', '23:59:59'];
const invalid = ['24:00:00', '00:60:60', '00:00:60', '00:0:00', '00:00:0'];
(0, _1.testVerify)('TIME', shared_1.regexpTime, valid, invalid);
(0, _1.testFind)('TIME', shared_1.regexpTime, valid, invalid);
(0, _1.testReplace)('TIME', shared_1.regexpTime, valid, invalid);
//# sourceMappingURL=time.test.js.map