(set)
| 44 | return clone; |
| 45 | } |
| 46 | function cloneSet(set) { |
| 47 | var clone = new Set(); |
| 48 | set.forEach(function (value) { |
| 49 | clone.add(value); |
| 50 | }); |
| 51 | return clone; |
| 52 | } |
| 53 | function getProperty(object, property) { |
| 54 | try { |
| 55 | return object[property]; |
no test coverage detected