(obj, cb)
| 6753 | exported = Object.create(null); |
| 6754 | |
| 6755 | function each(obj, cb) { |
| 6756 | if (!obj) |
| 6757 | return; |
| 6758 | |
| 6759 | if (!Array.isArray(obj) && typeof obj === "object") |
| 6760 | obj = Object.keys(obj); |
| 6761 | |
| 6762 | obj.forEach(cb); |
| 6763 | } |
| 6764 | |
| 6765 | if (o) { |
| 6766 | each(o.predef || null, function (item) { |
no outgoing calls
no test coverage detected