astro-ghostcms/.pnpm-store/v3/files/f0/49c2ea87857f3683c582e62bf09...

19 lines
427 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
module.exports = function (_require) {
_require = _require || require
var main = _require.main
if (main && isIISNode(main)) return handleIISNode(main)
else return main ? main.filename : process.cwd()
}
function isIISNode (main) {
return /\\iisnode\\/.test(main.filename)
}
function handleIISNode (main) {
if (!main.children.length) {
return main.filename
} else {
return main.children[0].filename
}
}