Browse Source

doc: prefix of the stacktrace in errors.md

PR-URL: https://github.com/nodejs/node/pull/14150
Fixes: https://github.com/nodejs/node/issues/5675
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Kunal Pathak <kunal.pathak@microsoft.com>
v6
Roman Shoryn 7 years ago
committed by Refael Ackermann
parent
commit
7f26a291f6
No known key found for this signature in database GPG Key ID: CD704BD80FDDDB64
  1. 3
      doc/api/errors.md

3
doc/api/errors.md

@ -221,8 +221,7 @@ Error.captureStackTrace(myObject);
myObject.stack; // similar to `new Error().stack`
```
The first line of the trace, instead of being prefixed with `ErrorType:
message`, will be the result of calling `targetObject.toString()`.
The first line of the trace will be prefixed with `${myObject.name}: ${myObject.message}`.
The optional `constructorOpt` argument accepts a function. If given, all frames
above `constructorOpt`, including `constructorOpt`, will be omitted from the

Loading…
Cancel
Save