選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

system.js 192B

1234567
  1. // Provide a "System" global.
  2. module.exports = {
  3. // Make sure import is only used as "System.import"
  4. import: function() {
  5. throw new Error("System.import cannot be used indirectly");
  6. }
  7. };