aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/utils/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/deployer/src/utils/utils.ts')
-rw-r--r--packages/deployer/src/utils/utils.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/deployer/src/utils/utils.ts b/packages/deployer/src/utils/utils.ts
deleted file mode 100644
index 9b1e59f9d..000000000
--- a/packages/deployer/src/utils/utils.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-export const utils = {
- stringifyWithFormatting(obj: any): string {
- const jsonReplacer: null = null;
- const numberOfJsonSpaces = 4;
- const stringifiedObj = JSON.stringify(obj, jsonReplacer, numberOfJsonSpaces);
- return stringifiedObj;
- },
-};