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";
|
let result: string = "{\n";
|
||||||
for (let key in obj) {
|
for (let key in obj) {
|
||||||
if (obj.hasOwnProperty(key)) {
|
if (obj.hasOwnProperty(key)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user