项目原始demo,不改动
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 

14 行
286 B

  1. "use strict";
  2. exports.__generic = function (t, a) {
  3. a(t.call(this), this[0]);
  4. };
  5. exports[""] = function (t, a) {
  6. var x;
  7. a(t.call([]), undefined, "Empty");
  8. a(t.call(new Array(234), undefined, "Sparse empty"));
  9. x = new Array(2342);
  10. x[434] = {};
  11. a(t.call(x), x[434], "Sparse");
  12. };