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.
12 lines
316 B
12 lines
316 B
10 years ago
|
import factory from 'factory';
|
||
|
import { bar, foo } from 'baz';
|
||
9 years ago
|
import { port } from 'shipping-port';
|
||
10 years ago
|
import * as containers from 'shipping-port';
|
||
9 years ago
|
import alphabet, { a } from 'alphabet';
|
||
10 years ago
|
|
||
10 years ago
|
factory( null );
|
||
9 years ago
|
foo( bar, port );
|
||
10 years ago
|
containers.forEach( console.log, console );
|
||
10 years ago
|
console.log( a );
|
||
9 years ago
|
console.log( alphabet.length );
|