We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
functions
constants
1 parent aafbe81 commit cfed82dCopy full SHA for cfed82d
1 file changed
src/argv2Object.mjs
@@ -23,6 +23,10 @@
23
* Command line input: node script.js -h --name=John --is-admin
24
* Output: { h: true, name: 'John', is_admin: true }
25
*/
26
+// ━━ IMPORT MODULES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
27
+// » IMPORT LOCAL MODULES
28
+import { REGEXPS, THROWS_ERRORS_MESSAGES } from '#constants';
29
+import { formatKey, convertValue } from '#functions';
30
31
// ━━ TYPE DEFINITIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
32
/**
0 commit comments