mapToObject: function()

in src/main/resources/SLING-INF/libs/sling/sightly/js/internal/helper.js [33:41]


        mapToObject: function (javaMap) {
            var props = {};
            var it = javaMap.entrySet().iterator();
            while (it.hasNext()) {
                var entry = it.next();
                props[entry.getKey()] = entry.getValue();
            }
            return props;
        }