"use strict"; module.exports = function unattendedFlags(command) { /* This will answer "no" to any safety prompts, cancelling the operation if safety issues arise. */ return command.withFlags({ q: [true, true] }); };