(t: Target)
| 152 | const workerdBinaryName = (t: Target) => (t.os === "win32" ? "workerd.exe" : "workerd"); |
| 153 | |
| 154 | const isCurrentPlatform = (t: Target) => |
| 155 | t.os === process.platform && t.arch === process.arch && !t.abi; |
| 156 | |
| 157 | /** |
| 158 | * Resolve the platform-specific @napi-rs/keyring native binding for a target. |