Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

newArrowCheck.js 199 B

há 3 anos
123456789
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = function (innerThis, boundThis) {
  4. if (innerThis !== boundThis) {
  5. throw new TypeError("Cannot instantiate an arrow function");
  6. }
  7. };