(type, tag)
| 1500 | } |
| 1501 | |
| 1502 | function getIteratorBraces(type, tag) { |
| 1503 | if (tag !== `${type} Iterator`) { |
| 1504 | if (tag !== '') |
| 1505 | tag += '] ['; |
| 1506 | tag += `${type} Iterator`; |
| 1507 | } |
| 1508 | return [`[${tag}] {`, '}']; |
| 1509 | } |
| 1510 | |
| 1511 | function getBoxedBase(value, ctx, keys, constructor, tag) { |
| 1512 | let fn; |
no outgoing calls
no test coverage detected
searching dependent graphs…