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    
ui-component-library / src / forms / deps / isValidOrderId.tsx
Size: Mime:

const matchAlphaNumericWithHyphen = /^[A-Za-z0-9-]+$/

function isValidOrderId(value: string): boolean {
  return matchAlphaNumericWithHyphen.test(value)
}

export { isValidOrderId }