excludedOperations.mjs 501 B

123456789101112131415161718192021222324
  1. /**
  2. * Operations to exlude from the Node API
  3. *
  4. * @author d98762656 [d98762625@gmail.com]
  5. * @copyright Crown Copyright 2018
  6. * @license Apache-2.0
  7. */
  8. export default [
  9. // This functionality can be done more easily using JavaScript
  10. "Fork",
  11. "Merge",
  12. "Jump",
  13. "ConditionalJump",
  14. "Label",
  15. "Comment",
  16. // esprima doesn't work in .mjs
  17. "JavaScriptBeautify",
  18. "JavaScriptMinify",
  19. "JavaScriptParser",
  20. // Irrelevant in Node console
  21. "SyntaxHighlighter",
  22. ];