Created
March 26, 2025 20:20
-
-
Save GuilhermeRossato/d72ca9130e71b006f41110dafbf00b23 to your computer and use it in GitHub Desktop.
Node.js console utility method that removes argument sequences from the program arguments (when they are found)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const debug = false; | |
/** | |
* Extracts sequential arguments from the program arguments if they match a specific value (or any from a list). | |
* | |
* @usage: const host = extractArgs(['--host', '-h'], 1)[1]; | |
* @usage: const debug = extractArgs(['--debug', '-d']).length; | |
* | |
* @param {string | string[] | string[][]} name - Value or list of values to match in the arguments. | |
* @param {number} offset - Number of arguments after the matched argument to extract and include in the result. | |
* @param {string[]} argv - Optional list of arguments to search in and remove from (with the splice method). | |
* @returns {string[]} - Sequential arguments from the match, or an empty array if not found. | |
*/ | |
export function extractArgs(name, offset = 0, argv = []) { | |
if (!argv || !argv?.length) { | |
argv = process.argv; | |
} | |
const list = (typeof name === "string" ? name.split("/") : name instanceof Array ? name : [name]) | |
.flatMap((a) => (a instanceof Array ? a : a ? [String(a)] : [])) | |
.flatMap((a) => (a ? [String(a)] : [])) | |
.flatMap((a) => (typeof a === "string" && a.trim().length ? [a.startsWith("-") ? a : a.length === 1 ? `-${a}` : `--${a}`] : [])); | |
const i = list.map((elem) => argv.indexOf(elem)).find((i) => i !== -1); | |
debug && console.log('[D] [extractArgs] Search got index:', i, 'with', [argv[i]], offset ? 'and offset:' : '', offset ? offset : ''); | |
return i && typeof i === "number" ? argv.splice(i, 1 + offset) : []; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment