mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
2 changed files with 10 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
var assert = require( 'assert' ); |
||||
|
|
||||
|
module.exports = { |
||||
|
description: 'any global variables in scope can be re-exported', |
||||
|
|
||||
|
exports: function ( exports ) { |
||||
|
assert.equal( exports.Buffer, Buffer ); |
||||
|
} |
||||
|
}; |
@ -0,0 +1 @@ |
|||||
|
export { Buffer }; |
Loading…
Reference in new issue