2016-09-09 04:26:28 +08:00
|
|
|
export * from "./a";
|
|
|
|
export default "default-value";
|
|
|
|
export var b = "b";
|
2017-06-02 20:22:42 +08:00
|
|
|
export { default as external } from "external";
|
2025-03-11 14:18:11 +08:00
|
|
|
export * from "external-named";
|
2021-02-11 02:14:50 +08:00
|
|
|
|
|
|
|
var module = "should not conflict",
|
|
|
|
define = "should not conflict",
|
|
|
|
require = "should not conflict",
|
|
|
|
exports = "should not conflict",
|
|
|
|
globalName = "should not conflict";
|
|
|
|
console.log.bind(console, module, define, require, exports, globalName);
|