From 7a3df06eb573d36142bd1a8e03c5ce8752d300b3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 24 May 2017 15:10:37 +0200 Subject: fix build issues and add typedoc --- node_modules/shelljs/src/error.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 node_modules/shelljs/src/error.js (limited to 'node_modules/shelljs/src/error.js') diff --git a/node_modules/shelljs/src/error.js b/node_modules/shelljs/src/error.js new file mode 100644 index 000000000..507c86ddd --- /dev/null +++ b/node_modules/shelljs/src/error.js @@ -0,0 +1,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; -- cgit v1.2.3