Socket
Socket
Sign inDemoInstall

wrap-error-message

Package Overview
Dependencies
4
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

wrap-error-message

Properly wrap an error's message


Version published
Maintainers
1
Weekly downloads
5,308
decreased by-6.24%

Weekly downloads

Readme

Source

Node Browsers TypeScript Codecov Minified size Mastodon Medium

Properly wrap an error's message.

Features

Example

import wrapErrorMessage from 'wrap-error-message'

wrapErrorMessage(new Error('Message.'), 'Additional message.')
// Error: Message.
// Additional message.

wrapErrorMessage(new Error('Message.'), 'Additional message:')
// Error: Additional message: Message.

wrapErrorMessage(new Error('Message.'), 'Additional message:\n')
// Error: Additional message:
// Message.

wrapErrorMessage(new Error('Message.'), '')
// Error: Message.

const invalidError = 'Message.'
wrapErrorMessage(invalidError, 'Additional message.')
// Error: Message.
// Additional message.

wrapErrorMessage(new Error('  Message with spaces  '), '  Additional message  ')
// Error: Message with spaces
// Additional message

Install

npm install wrap-error-message

This package works in both Node.js >=14.18.0 and browsers. It is an ES module and must be loaded using an import or import() statement, not require().

API

wrapErrorMessage(error, message)

error Error | any
message string
Return value: Error

Appends message to error.message. If message ends with : or :\n, prepends it instead.

Returns error. If error is not an Error instance, it is converted to one.

Support

For any question, don't hesitate to submit an issue on GitHub.

Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.

Contributing

This project was made with ❤️. The simplest way to give back is by starring and sharing it online.

If the documentation is unclear or has a typo, please click on the page's Edit button (pencil icon) and suggest a correction.

If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!

Keywords

FAQs

Last updated on 21 Nov 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc