12 lines
232 B
HTML
12 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>
|