Commit dist files

This commit is contained in:
Federico Grandi
2020-03-03 19:32:47 +01:00
parent 06fd39b8b7
commit 45c7fd7a48
216 changed files with 16147 additions and 0 deletions

15
node_modules/shelljs/src/error.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
var common = require('./common');
//@
//@ ### error()
//@
//@ Tests if error occurred in the last command. Returns a truthy value if an
//@ error returned, or 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;