mirror of https://github.com/lukechilds/rollup.git
13 lines
333 B
13 lines
333 B
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
(global.foo = factory());
|
|
}(this, (function () { 'use strict';
|
|
|
|
function foo () {
|
|
console.log( 'indented with tabs' );
|
|
}
|
|
|
|
return foo;
|
|
|
|
})));
|