UNPKG

@playbooks/utils

Version:

A collection of utilities used for Playbooks.

7 lines (6 loc) 332 B
export declare const nonAlphaNumericRegex: RegExp; export declare const alphaNumericRegex: RegExp; export declare const httpRegex: RegExp; export declare const nonAlphaNumericRegexString = "[^a-zA-Z0-9- ]"; export declare const alphaNumericRegexString = "^([a-zA-Z]|[0-9]|-)+$"; export declare const httpRegexString = "^https?://";