mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
480 B
16 lines
480 B
8 years ago
|
export function foo () { console.log("outer foo"); }
|
||
|
export function bar () { console.log("outer bar"); }
|
||
|
export function bog () { console.log("outer bog"); }
|
||
|
export function boo () { console.log("outer boo"); }
|
||
|
|
||
|
function Baz() {
|
||
|
function foo () { console.log("inner foo"); }
|
||
|
function bar () { console.log("inner bar"); }
|
||
|
function bog () { console.log("inner bog"); }
|
||
|
function boo () { console.log("inner boo"); }
|
||
|
|
||
|
return bar(), bog;
|
||
|
}
|
||
|
|
||
|
export { Baz as baz };
|