1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-11 22:30:05 +00:00
Files
adapter/src/utils/isUri.ts
2020-09-16 11:34:59 +03:00

6 lines
160 B
TypeScript

/**
* Checks if string is in URI format.
* @param str - string to check.
*/
export const isUri = (str: string): boolean => /^\/folders\/folders\//.test(str)