c.html 259 B

1234567891011121314
  1. <html>
  2. <body>
  3. <script type="text/javascript" charset="utf-8">
  4. const types = {
  5. require: typeof require,
  6. module: typeof module,
  7. process: typeof process,
  8. global: typeof global
  9. }
  10. console.log(JSON.stringify(types));
  11. </script>
  12. </body>
  13. </html>