2021-10-22 01:24:20 +03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Bootstraps yargs for ESM:
|
|
|
|
import esmPlatformShim from './lib/platform-shims/esm.mjs';
|
2022-02-01 21:01:11 +03:00
|
|
|
import {YargsFactory} from './build/lib/yargs-factory.js';
|
2021-10-22 01:24:20 +03:00
|
|
|
|
2022-02-01 21:01:11 +03:00
|
|
|
const Yargs = YargsFactory(esmPlatformShim);
|
2021-10-22 01:24:20 +03:00
|
|
|
export default Yargs;
|