Skip to content

Instantly share code, notes, and snippets.

View anass01's full-sized avatar
๐Ÿ

Anass Bouallaga anass01

๐Ÿ
View GitHub Profile
function gettypes(ob){
return Object.keys(ob).map((e)=>{return e+':'+(typeof(ob[e])!='object'?typeof(ob[e]):'{'+gettypes(ob[e])+'}')})
}