mirror of
https://github.com/actions/setup-python.git
synced 2025-06-12 23:37:12 +02:00
Initial pass
This commit is contained in:
18
node_modules/require-main-filename/index.js
generated
vendored
Normal file
18
node_modules/require-main-filename/index.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user