Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

  1. # nice-try
  2. [![Travis Build Status](https://travis-ci.org/electerious/nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https://ci.appveyor.com/api/projects/status/8tqb09wrwci3xf8l?svg=true)](https://ci.appveyor.com/project/electerious/nice-try) [![Coverage Status](https://coveralls.io/repos/github/electerious/nice-try/badge.svg?branch=master)](https://coveralls.io/github/electerious/nice-try?branch=master) [![Dependencies](https://david-dm.org/electerious/nice-try.svg)](https://david-dm.org/electerious/nice-try#info=dependencies) [![Greenkeeper badge](https://badges.greenkeeper.io/electerious/nice-try.svg)](https://greenkeeper.io/)
  3. A function that tries to execute a function and discards any error that occurs.
  4. ## Install
  5. ```
  6. npm install nice-try
  7. ```
  8. ## Usage
  9. ```js
  10. const niceTry = require('nice-try')
  11. niceTry(() => JSON.parse('true')) // true
  12. niceTry(() => JSON.parse('truee')) // undefined
  13. niceTry() // undefined
  14. niceTry(true) // undefined
  15. ```
  16. ## API
  17. ### Parameters
  18. - `fn` `{Function}` Function that might or might not throw an error.
  19. ### Returns
  20. - `{?*}` Return-value of the function when no error occurred.