'use strict'; /** @type {NonNullable | undefined} */ var getInferredName; try { // eslint-disable-next-line no-new-func, no-extra-parens getInferredName = /** @type {NonNullable} */ (Function('s', 'return { [s]() {} }[s].name;')); } catch (e) {} var inferred = function () {}; /** @type {import('./getInferredName')} */ module.exports = getInferredName && inferred.name === 'inferred' ? getInferredName : null;