fix: Allow Any
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user