1.0.0 • Published 10 years ago

get-safely v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

get-safely NPM version

Run a block of code safely and quietly.

$ npm install get-safely

Module is originally created for converted SOAP apis that include many optional attributes that are accessed by indexing.

var get = require('get-safely');
var result = get(function () {
    return some[0].data[0].thatMight.throw('errors');
});

In the example above, if the data exists, then result will equal the expected value. However, if an error occurs while accessing the data, result will equal undefined.