Skip to content

Commit cfed82d

Browse files
committed
refactor: include functions and constants modules
1 parent aafbe81 commit cfed82d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/argv2Object.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
* Command line input: node script.js -h --name=John --is-admin
2424
* Output: { h: true, name: 'John', is_admin: true }
2525
*/
26+
// ━━ IMPORT MODULES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
27+
// » IMPORT LOCAL MODULES
28+
import { REGEXPS, THROWS_ERRORS_MESSAGES } from '#constants';
29+
import { formatKey, convertValue } from '#functions';
2630

2731
// ━━ TYPE DEFINITIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2832
/**

0 commit comments

Comments
 (0)