1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-09 21:30:05 +00:00

Merge branch 'master' into issue-69

This commit is contained in:
Krishna Acondy
2020-09-10 09:50:15 +01:00
committed by GitHub
60 changed files with 16073 additions and 74 deletions

View File

@@ -13,4 +13,5 @@ export * from './parseSasViyaLog'
export * from './serialize'
export * from './splitChunks'
export * from './parseWeboutResponse'
export * from './isUri'
export * from './isUrl'

5
src/utils/isUri.ts Normal file
View File

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