mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 03:51:40 -04:00
10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
/**
|
|
* An error message with a `silent` flag, where the stack is supressed.
|
|
* Used for user-friendly error messages.
|
|
*/
|
|
export default function runtimeError (message: string) {
|
|
const err = new Error(message)
|
|
err['silent'] = true
|
|
return err
|
|
}
|