interface Navigator
Provides information about the Deno runtime environment and the system
on which it's running. Similar to the browser Navigator
object but
adapted for the Deno context.
Examples #
#
// Check available CPU cores
console.log(`Available CPU cores: ${navigator.hardwareConcurrency}`);
// Check user agent
console.log(`User agent: ${navigator.userAgent}`);
// Check language settings
console.log(`Language: ${navigator.language}`);