(names, from)
| 1376 | } |
| 1377 | } |
| 1378 | function subtractNames(names, from) { |
| 1379 | for (const n in from) |
| 1380 | names[n] = (names[n] || 0) - (from[n] || 0); |
| 1381 | } |
| 1382 | function not(x) { |
| 1383 | return typeof x == "boolean" || typeof x == "number" || x === null ? !x : (0, code_1._) `!${par(x)}`; |
| 1384 | } |