d.html 232 B

12345678910111213
  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. }
  9. console.log(JSON.stringify(types));
  10. </script>
  11. </body>
  12. </html>