Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

getInferredName.js 287B

12345678910
  1. 'use strict';
  2. var getInferredName;
  3. try {
  4. // eslint-disable-next-line no-new-func
  5. getInferredName = Function('s', 'return { [s]() {} }[s].name;');
  6. } catch (e) {}
  7. var inferred = function () {};
  8. module.exports = getInferredName && inferred.name === 'inferred' ? getInferredName : null;