(t: Target)
| 226 | const workerdBinaryName = (t: Target) => (t.os === "win32" ? "workerd.exe" : "workerd"); |
| 227 | |
| 228 | const isCurrentPlatform = (t: Target) => |
| 229 | t.os === process.platform && t.arch === process.arch && !t.abi; |
| 230 | |
| 231 | /** |
| 232 | * Resolve the platform-specific @napi-rs/keyring native binding for a target. |