@sparticuz/chromium
Version:
Chromium Binary for Serverless Platforms
12 lines (11 loc) • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBinPath = getBinPath;
const node_path_1 = require("node:path");
/**
* Get the bin directory path for CommonJS modules
*/
function getBinPath() {
// eslint-disable-next-line unicorn/prefer-module
return (0, node_path_1.join)((0, node_path_1.dirname)(__filename), "..", "..", "bin");
}