(a: ReadonlySet<string>, b: ReadonlySet<string>)
| 196 | return out; |
| 197 | } |
| 198 | |
| 199 | function isSubset(a: ReadonlySet<string>, b: ReadonlySet<string>): boolean { |
| 200 | for (const x of a) if (!b.has(x)) return false; |
| 201 | return true; |
| 202 | } |
| 203 | |
| 204 | /** The non-wildcard MathJSON payload(s) of a guard (for shell collection). */ |
no test coverage detected