Repository URL to install this package:
Version:
0.9.7 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const matchAlphaNumericWithHyphen = /^[A-Za-z0-9-]+$/;
function isValidOrderId(value) {
return matchAlphaNumericWithHyphen.test(value);
}
exports.isValidOrderId = isValidOrderId;
//# sourceMappingURL=isValidOrderId.js.map