I have an array with items for which I don't know neither keys or values. Looks like this:
{"key1":true,"key2":true, "key3":'value'}
If I loop using ng-repeat: ng-repeat="(k, v) in array"
I get Duplicates in a repeater are not allowed.
How can I loop this kind of array in angular template, where I don't know neither the keys, values or it's length?