mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
8 years ago
18 changed files with 89 additions and 11 deletions
@ -0,0 +1,6 @@ |
|||
module.exports = { |
|||
description: 'supports environments without Object.freeze', |
|||
options: { |
|||
legacy: true |
|||
} |
|||
}; |
@ -0,0 +1,13 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
const foo = 42; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
foo: foo |
|||
}); |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
|||
|
|||
}); |
@ -0,0 +1,11 @@ |
|||
'use strict'; |
|||
|
|||
const foo = 42; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
foo: foo |
|||
}); |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
@ -0,0 +1,9 @@ |
|||
const foo = 42; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
foo: foo |
|||
}); |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
@ -0,0 +1,14 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
const foo = 42; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
foo: foo |
|||
}); |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
|||
|
|||
}()); |
@ -0,0 +1,17 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
const foo = 42; |
|||
|
|||
|
|||
var namespace = (Object.freeze || Object)({ |
|||
foo: foo |
|||
}); |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
|||
|
|||
}))); |
@ -0,0 +1,4 @@ |
|||
import * as namespace from './namespace.js'; |
|||
|
|||
const x = 'foo'; |
|||
assert.equal( namespace[x], 42 ); |
@ -0,0 +1 @@ |
|||
export const foo = 42; |
Loading…
Reference in new issue