blob: 507c86ddd7131e5d1275901b40cc63c1be46805b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
var common = require('./common');
//@
//@ ### error()
//@ Tests if error occurred in the last command. Returns a truthy value if an
//@ error returned and a falsy value otherwise.
//@
//@ **Note**: do not rely on the
//@ return value to be an error message. If you need the last error message, use
//@ the `.stderr` attribute from the last command's return value instead.
function error() {
return common.state.error;
}
module.exports = error;
|