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.
11 lines
324 B
11 lines
324 B
8 years ago
|
(function (exports,foo,bar,baz) {
|
||
|
'use strict';
|
||
|
|
||
|
|
||
|
|
||
|
Object.keys(foo).forEach(function (key) { exports[key] = foo[key]; });
|
||
|
Object.keys(bar).forEach(function (key) { exports[key] = bar[key]; });
|
||
|
Object.keys(baz).forEach(function (key) { exports[key] = baz[key]; });
|
||
|
|
||
|
}((this.myBundle = this.myBundle || {}),foo,bar,baz));
|