(script)
| 417 | |
| 418 | function formatScripts(displayNatives = false) { |
| 419 | function isVisible(script) { |
| 420 | if (displayNatives) return true; |
| 421 | return !script.isNative || isCurrentScript(script); |
| 422 | } |
| 423 | |
| 424 | return ArrayPrototypeJoin(ArrayPrototypeMap( |
| 425 | ArrayPrototypeFilter(ObjectValues(knownScripts), isVisible), |
nothing calls this directly
no test coverage detected
searching dependent graphs…