UNPKG

pnpm

Version:

A fast implementation of npm install

13 lines 384 B
"use strict"; /** * An error message with a `silent` flag, where the stack is supressed. * Used for user-friendly error messages. */ function runtimeError(message) { const err = new Error(message); err['silent'] = true; return err; } Object.defineProperty(exports, "__esModule", { value: true }); exports.default = runtimeError; //# sourceMappingURL=runtimeError.js.map