mirror of https://github.com/tc39/test262.git
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
|
|
||
|
export const Cocoa = "Cocoa";
|
||
|
|
||
|
export let Cappuccino = "Cappuccino";
|
||
|
|
||
|
export default function changeCappuccino(value) {
|
||
|
Cappuccino = value;
|
||
|
}
|
||
|
|
||
|
export * from "./additional-drink.js"
|