mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 21:01:52 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
type ImportMetaObject = Partial<ImportMeta>;
|
|
|
|
$getter;
|
|
export function main(this: ImportMetaObject) {
|
|
return this.path === Bun.main && Bun.isMainThread;
|
|
}
|