6148ba5ea8b5/node_modules/caniuse-lite/data/regions/RU.js">RU.js 77628cf8bf first comm 3 anni fa RW.js 77628cf8bf first comm 3 anni fa SA.js 77628cf8bf first comm 3 anni fa SB.js 77628cf8bf first comm 3 anni fa SC.js 77628cf8bf first comm 3 anni fa SD.js 77628cf8bf first comm 3 anni fa SE.js 77628cf8bf first comm 3 anni fa SG.js 77628cf8bf first comm 3 anni fa SH.js 77628cf8bf first comm 3 anni fa SI.js 77628cf8bf first comm 3 anni fa SK.js 77628cf8bf first comm 3 anni fa SL.js 77628cf8bf first comm 3 anni fa SM.js 77628cf8bf first comm 3 anni fa SN.js 77628cf8bf first comm 3 anni fa SO.js 77628cf8bf first comm 3 anni fa SR.js 77628cf8bf first comm 3 anni fa ST.js 77628cf8bf first comm 3 anni fa SV.js 77628cf8bf first comm 3 anni fa SY.js 77628cf8bf first comm 3 anni fa SZ.js 77628cf8bf first comm 3 anni fa TC.js 77628cf8bf first comm 3 anni fa TD.js 77628cf8bf first comm 3 anni fa TG.js 77628cf8bf first comm 3 anni fa TH.js 77628cf8bf first comm 3 anni fa TJ.js 77628cf8bf first comm 3 anni fa TK.js 77628cf8bf first comm 3 anni fa TL.js 77628cf8bf first comm 3 anni fa TM.js 77628cf8bf first comm 3 anni fa TN.js 77628cf8bf first comm 3 anni fa TO.js 77628cf8bf first comm 3 anni fa TR.js 77628cf8bf first comm 3 anni fa TT.js 77628cf8bf first comm 3 anni fa TV.js 77628cf8bf first comm 3 anni fa TW.js 77628cf8bf first comm 3 anni fa TZ.js 77628cf8bf first comm 3 anni fa UA.js 77628cf8bf first comm 3 anni fa UG.js 77628cf8bf first comm 3 anni fa US.js 77628cf8bf first comm 3 anni fa UY.js 77628cf8bf first comm 3 anni fa UZ.js 77628cf8bf first comm 3 anni fa VA.js 77628cf8bf first comm 3 anni fa VC.js 77628cf8bf first comm 3 anni fa VE.js 77628cf8bf first comm 3 anni fa VG.js 77628cf8bf first comm 3 anni fa VI.js 77628cf8bf first comm 3 anni fa VN.js 77628cf8bf first comm 3 anni fa VU.js 77628cf8bf first comm 3 anni fa WF.js 77628cf8bf first comm 3 anni fa WS.js 77628cf8bf first comm 3 anni fa YE.js 77628cf8bf first comm 3 anni fa YT.js 77628cf8bf first comm 3 anni fa ZA.js 77628cf8bf first comm 3 anni fa ZM.js 77628cf8bf first comm 3 anni fa ZW.js 77628cf8bf first comm 3 anni fa alt-af.js 77628cf8bf first comm 3 anni fa alt-an.js 77628cf8bf first comm 3 anni fa alt-as.js 77628cf8bf first comm 3 anni fa alt-eu.js 77628cf8bf first comm 3 anni fa alt-na.js 77628cf8bf first comm 3 anni fa alt-oc.js 77628cf8bf first comm 3 anni fa alt-sa.js 77628cf8bf first comm 3 anni fa alt-ww.js 77628cf8bf first comm 3 anni fa tum/tmt_learning - Gogs: Simplico Git Service

Ei kuvausta

sucrase-node 623B

12345678910111213141516171819
  1. #!/usr/bin/env node
  2. const Module = require("module");
  3. const {resolve} = require("path");
  4. /*
  5. * Simple wrapper around node that first registers Sucrase with default settings.
  6. *
  7. * This is meant for simple use cases, and doesn't support custom Node/V8 args,
  8. * executing a code snippet, a REPL, or other things that you might find in
  9. * node, babel-node, or ts-node. For more advanced use cases, you can use
  10. * `node -r sucrase/register` or register a require hook programmatically from
  11. * your own code.
  12. */
  13. require("../register");
  14. process.argv.splice(1, 1);
  15. process.argv[1] = resolve(process.argv[1]);
  16. Module.runMain();