deno/tests/specs/compile/deno_build_standalone/worker.ts

4 lines
123 B
TypeScript

// ensure this is properly set in a worker
const value: boolean = Deno.build.standalone;
console.log(value);
self.close();