hermes-agent/apps/desktop/scripts/utils.mjs
2026-07-08 16:24:16 -07:00

8 lines
No EOL
234 B
JavaScript

import { pathToFileURL } from 'node:url';
// returns true if the passsed file is being invoked from node,
// not imported.
export function isMain(importMetaUrl) {
return importMetaUrl === pathToFileURL(process.argv[1]).href;
}