(code, msg, ...args)
| 48 | } |
| 49 | |
| 50 | export function formatErrorMessage(code, msg, ...args) { |
| 51 | return `single-spa minified message #${code}: ${ |
| 52 | msg ? msg + " " : "" |
| 53 | }See https://single-spa.js.org/error/?code=${code}${ |
| 54 | args.length ? `&arg=${args.join("&arg=")}` : "" |
| 55 | }`; |
| 56 | } |
| 57 | |
| 58 | export function transformErr(ogErr, appOrParcel, newStatus) { |
| 59 | const errPrefix = `${objectType(appOrParcel)} '${toName( |
no outgoing calls
no test coverage detected
searching dependent graphs…