"use strict"; module.exports = function isExecaError(error) { return ( error.stdout != null && error.stderr != null && error.failed != null && error.timedOut != null && error.command != null ); };