()
| 201 | // without getting anywhere near typical browser limits |
| 202 | const pow = 16; |
| 203 | function longString() { |
| 204 | let s = 'Spam'; |
| 205 | for (let i = 2; i < pow; i++) { |
| 206 | s += s; |
| 207 | } |
| 208 | return s; |
| 209 | } |
| 210 | |
| 211 | export const stores = { |
| 212 | memory: new MemStore() |
no outgoing calls
no test coverage detected
searching dependent graphs…