Socket
Socket
Sign inDemoInstall

nice-try

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nice-try

Tries to execute a function and discards any error that occurs


Version published
Weekly downloads
12M
decreased by-9.77%
Maintainers
1
Install size
4.32 kB
Created
Weekly downloads
 

Package description

What is nice-try?

The nice-try npm package is a utility module that provides a simple way to attempt executing a function that might or might not throw an error without having to use try-catch blocks explicitly. It is designed to be a minimalistic and straightforward tool for safe function execution.

What are nice-try's main functionalities?

Safe Function Execution

This feature allows you to execute a function and if it throws an error, nice-try will catch it and return undefined instead of letting the error propagate. This is useful when you want to attempt an operation but don't want to handle the error explicitly.

const niceTry = require('nice-try');

const result = niceTry(() => {
  // Potentially risky operation
  return 'Operation successful';
});

console.log(result); // Outputs: 'Operation successful' or undefined if an error occurred

Other packages similar to nice-try

Changelog

Source

[1.0.4] - 2017-08-08

Added

  • Added a changelog

Changed

  • Ignore yarn.lock and package-lock.json files

Readme

Source

nice-try

Travis Build Status AppVeyor Status Coverage Status Dependencies

A function that tries to execute a function and discards any error that occurs.

Install

npm install nice-try

Usage

const niceTry = require('nice-try')

niceTry(() => JSON.parse('true')) // true
niceTry(() => JSON.parse('truee')) // undefined
niceTry() // undefined
niceTry(true) // undefined

API

Parameters

  • fn {Function} Function that might or might not throw an error.

Returns

  • {?*} Return-value of the function when no error occurred.

Keywords

FAQs

Last updated on 08 Aug 2017

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