web-deploy/node_modules/@minify-html/node/index.js

9 lines
330 B
JavaScript
Raw Normal View History

2024-04-26 18:37:00 +01:00
// This wrapper file also exists to allow importing from ESM contexts, as Node.js does not allow importing ".node" modules directly from ESM.
try {
// Prioritise any local built binary.
module.exports = require("./index.node");
} catch {
module.exports = require(`@minify-html/node-${process.platform}-${process.arch}`);
}