Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 | 2x 14300x 2700x 2700x 2700x 2700x 11600x | module.exports = (field, options, argv) => {
if (typeof field === 'undefined') {
const msg = {msg: `Please provide ${options} option`}
const line = argv.verbose > 0 ? {line: -1} : {}
const info = argv.verbose > 1 ? {info: JSON.stringify(argv)} : {}
return [Object.assign(msg, line, info)]
}
return []
} |