fix: Allow Any

This commit is contained in:
2024-01-15 20:56:45 -05:00
parent 5a2fd27aa3
commit c14671cdfe

View File

@@ -1,4 +1,4 @@
const formatDictionaryAsString = (obj: Object, indentation = 2) => {
const formatDictionaryAsString = (obj: any, indentation = 2) => {
let result: string = "{\n";
for (let key in obj) {
if (obj.hasOwnProperty(key)) {