mirror of https://github.com/lukechilds/rollup.git
Permutator
8 years ago
3 changed files with 13 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||||
|
module.exports = { |
||||
|
description: 'includes default exports that are only used internally' |
||||
|
}; |
@ -0,0 +1,3 @@ |
|||||
|
import { b } from './module.js'; |
||||
|
|
||||
|
assert.equal(b(), 15); |
@ -0,0 +1,7 @@ |
|||||
|
export default function a() { |
||||
|
return 5; |
||||
|
} |
||||
|
|
||||
|
export function b() { |
||||
|
return a() + 10; |
||||
|
} |
Loading…
Reference in new issue