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
441 B
12 lines
441 B
define(['factory', 'baz', 'shipping-port', 'alphabet'], function (factory, baz, containers, alphabet) { 'use strict';
|
|
|
|
factory = 'default' in factory ? factory['default'] : factory;
|
|
var alphabet__default = 'default' in alphabet ? alphabet['default'] : alphabet;
|
|
|
|
factory( null );
|
|
baz.foo( baz.bar, containers.port );
|
|
containers.forEach( console.log, console );
|
|
console.log( alphabet.a );
|
|
console.log( alphabet__default.length );
|
|
|
|
});
|
|
|