mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
import { default as mixin } from './reexport-mixins.js';
|
|
let m = mixin;
|
|
|
|
import { f } from './n';
|
|
let myf = f;
|
|
|
|
import { someStuff } from './o';
|
|
let someVar = someStuff;
|
|
|
|
import { h } from './namespace-reexport';
|
|
let h1 = h;
|
|
let hf = h.f;
|