mirror of
https://github.com/electron/electron.git
synced 2026-01-14 18:08:07 -05:00
13 lines
232 B
HTML
13 lines
232 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
const types = {
|
|
require: typeof require,
|
|
module: typeof module,
|
|
process: typeof process
|
|
}
|
|
console.log(JSON.stringify(types));
|
|
</script>
|
|
</body>
|
|
</html>
|