(set, checks)
| 691 | } |
| 692 | |
| 693 | function hasAnyNotIn(set, checks) { |
| 694 | for (const s of set) |
| 695 | if (!ArrayPrototypeIncludes(checks, s)) |
| 696 | return true; |
| 697 | return false; |
| 698 | } |
| 699 | |
| 700 | const validateByteSource = hideStackFrames((val, name) => { |
| 701 | val = toBuf(val); |
no outgoing calls
no test coverage detected
searching dependent graphs…