electron/spec/fixtures/pages/c.html

14 lines
259 B
HTML
Raw Permalink Normal View History

2014-10-25 09:23:49 -06:00
<html>
<body>
<script type="text/javascript" charset="utf-8">
2018-05-14 16:00:49 -06:00
const types = {
require: typeof require,
module: typeof module,
process: typeof process,
global: typeof global
}
console.log(JSON.stringify(types));
2014-10-25 09:23:49 -06:00
</script>
</body>
</html>