codeql-action/node_modules/yargs/index.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 строки
231 B
JavaScript
Исходник Обычный вид История

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;