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
380 B
11 lines
380 B
define(['exports', 'foo', 'bar', 'baz'], 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]; });
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
});
|
|
|