window.Pengu
This is an namespace object that provides information about current Pengu version and the settings.
Pengu.version
stringsince v1.1.0A read-only property that returns the current version of Pengu Loader.
js
console.log(Pengu.version)
// 1.0.6
Pengu.superPotato
booleansince v1.1.0A boolean value that indicates the Super Low Spec Mode is enabled or not.
js
console.log(Pengu.superPotato)
// true or false
Pengu.plugins
string[ ]since v1.1.0An array of plugin entries.
js
console.log(Pengu.plugins)
// [ '@default/index.js', 'your-plugin/index.js' ]
Pengu.isMac
booleansince v1.2.0A read-only property that indicates the running operating system is MacOS or not.
js
console.log(Pengu.isMac)
// true or false