mirror of https://github.com/webpack/webpack.git
14 lines
243 B
JavaScript
14 lines
243 B
JavaScript
|
/*
|
||
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
||
|
Author Tobias Koppers @sokra
|
||
|
*/
|
||
|
"use strict";
|
||
|
|
||
|
class WebAssemblyGenerator {
|
||
|
generate(module) {
|
||
|
return module.originalSource();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = WebAssemblyGenerator;
|