mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
11 changed files with 86 additions and 3 deletions
@ -0,0 +1,7 @@ |
|||
module.exports = { |
|||
description: 'quotes reserved words in object literals', |
|||
options: { |
|||
moduleName: 'myBundle', |
|||
legacy: true |
|||
} |
|||
}; |
@ -0,0 +1,14 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
const _typeof = 'typeof'; |
|||
const foo = 1; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
'typeof': _typeof, |
|||
foo: foo |
|||
}); |
|||
|
|||
console.log( namespace ); |
|||
|
|||
}); |
@ -0,0 +1,12 @@ |
|||
'use strict'; |
|||
|
|||
const _typeof = 'typeof'; |
|||
const foo = 1; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
'typeof': _typeof, |
|||
foo: foo |
|||
}); |
|||
|
|||
console.log( namespace ); |
@ -0,0 +1,10 @@ |
|||
const _typeof = 'typeof'; |
|||
const foo = 1; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
'typeof': _typeof, |
|||
foo: foo |
|||
}); |
|||
|
|||
console.log( namespace ); |
@ -0,0 +1,15 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
const _typeof = 'typeof'; |
|||
const foo = 1; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
'typeof': _typeof, |
|||
foo: foo |
|||
}); |
|||
|
|||
console.log( namespace ); |
|||
|
|||
}()); |
@ -0,0 +1,18 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
const _typeof = 'typeof'; |
|||
const foo = 1; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
'typeof': _typeof, |
|||
foo: foo |
|||
}); |
|||
|
|||
console.log( namespace ); |
|||
|
|||
}))); |
@ -0,0 +1,3 @@ |
|||
import * as namespace from './namespace.js'; |
|||
|
|||
console.log( namespace ); |
@ -0,0 +1,3 @@ |
|||
const _typeof = 'typeof'; |
|||
export { _typeof as typeof }; |
|||
export const foo = 1; |
@ -1,7 +1,7 @@ |
|||
module.exports = { |
|||
description: 'supports environments without Object.freeze, Object.defined', |
|||
options: { |
|||
moduleName: 'myBundle', |
|||
moduleName: 'myBundle', |
|||
legacy: true |
|||
} |
|||
}; |
|||
|
Loading…
Reference in new issue