mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-11 22:30:05 +00:00
6 lines
160 B
TypeScript
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)
|