Fixed issue #2: [SQS or Terraform] Queues are not being created
This commit is contained in:
9
src/util/get-path-from-url.ts
Normal file
9
src/util/get-path-from-url.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export const getPathFromUrl = (url: string) => {
|
||||
|
||||
try {
|
||||
const obj = new URL(url);
|
||||
return obj.pathname;
|
||||
} catch (err) {}
|
||||
|
||||
return url;
|
||||
}
|
||||
Reference in New Issue
Block a user