(t: Target)
| 178 | const workerdBinaryName = (t: Target) => (t.os === "win32" ? "workerd.exe" : "workerd"); |
| 179 | |
| 180 | const isCurrentPlatform = (t: Target) => |
| 181 | t.os === process.platform && t.arch === process.arch && !t.abi; |
| 182 | |
| 183 | /** |
| 184 | * Resolve the platform-specific @napi-rs/keyring native binding for a target. |