mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-10 05:40:06 +00:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
/**
|
|
* Checks if string is in URI format
|
|
* @param str string to check
|
|
*/
|
|
export const isUri = (str: string): boolean => /^\/folders\/folders\//.test(str)
|