Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / forms / deps / isValidOrderId.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
const matchAlphaNumericWithHyphen = /^[A-Za-z0-9-]+$/;
/**
 * @todo missing story for this
 */

function isValidOrderId(value) {
  return matchAlphaNumericWithHyphen.test(value);
}

exports.isValidOrderId = isValidOrderId; //# sourceMappingURL=isValidOrderId.js.map