( user: string, pkg: string, options?: ExecNpmOptions, )
| 517 | } |
| 518 | |
| 519 | export async function ownerRemove( |
| 520 | user: string, |
| 521 | pkg: string, |
| 522 | options?: ExecNpmOptions, |
| 523 | ): Promise<NpmExecResult> { |
| 524 | validateUsername(user) |
| 525 | validatePackageName(pkg) |
| 526 | return execNpm(['owner', 'rm', user, pkg], options) |
| 527 | } |
| 528 | |
| 529 | // List functions (for reading data) - silent since they're not user-triggered operations |
| 530 |
no test coverage detected