-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.mjs
More file actions
23 lines (21 loc) · 942 Bytes
/
index.mjs
File metadata and controls
23 lines (21 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @file Entry point for ES Module consumers.
*
* Provides the default export of argv2object functionality
* for modern JavaScript environments using ES Modules.
*
* This file re-exports the main functionality from the
* implementation module while maintaining ESM compatibility.
*
* @module argv2object/esm
* @see module:argv2Object
* @since 1.1.0
* @example
* // ESM Usage
* import argv2object from 'argv2object';
*/
// ━━ IMPORT MODULES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
// » IMPORT LOCAL MODULES
import argv2Object from '#argv2Object';
// ━━ EXPORT MODULE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
export default argv2Object;