UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

13 lines (12 loc) 283 B
class ProcessOperatingSystemProvider { #platformToOs = { darwin: "macOS", win32: "Windows", linux: "Linux" }; name = process.platform; displayName = `${this.#platformToOs[this.name] ?? this.name} (${process.arch})`; } export { ProcessOperatingSystemProvider };