12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
|
|
/**
|
||
|
|
* Gets the path to the Wasm module.
|
||
|
|
* @returns {string}
|
||
|
|
*/
|
||
|
|
function getPath() {
|
||
|
|
return require("path").join(__dirname, "plugin.wasm");
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
getPath,
|
||
|
|
};
|