mirror of
https://github.com/github/codeql-action
synced 2026-06-01 20:01:46 +03:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
// Bootstrap yargs for browser:
|
|
import browserPlatformShim from './lib/platform-shims/browser.mjs';
|
|
import {YargsWithShim} from './build/lib/yargs-factory.js';
|
|
|
|
const Yargs = YargsWithShim(browserPlatformShim);
|
|
|
|
export default Yargs;
|