1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-10 05:40:06 +00:00
Files
adapter/src/utils/isUri.ts
2020-09-08 17:24:49 +03:00

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)