From f5e1907e289a7130a953148d1e619f3c77a564c2 Mon Sep 17 00:00:00 2001 From: Krishna Acondy Date: Sat, 8 Aug 2020 14:27:40 +0100 Subject: [PATCH] feat(clear-requests): add function to clear debug requests --- src/SASjs.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SASjs.ts b/src/SASjs.ts index 4916d71..92d0eef 100644 --- a/src/SASjs.ts +++ b/src/SASjs.ts @@ -1109,6 +1109,10 @@ export default class SASjs { return sortedRequests; } + public clearSasRequests() { + this.sasjsRequests = []; + } + private setupConfiguration() { if ( this.sasjsConfig.serverUrl === undefined ||