You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
474 B
13 lines
474 B
'use strict'; |
|
|
|
/** @type {NonNullable<import('./getInferredName')> | undefined} */ |
|
var getInferredName; |
|
try { |
|
// eslint-disable-next-line no-new-func, no-extra-parens |
|
getInferredName = /** @type {NonNullable<import('./getInferredName')>} */ (Function('s', 'return { [s]() {} }[s].name;')); |
|
} catch (e) {} |
|
|
|
var inferred = function () {}; |
|
|
|
/** @type {import('./getInferredName')} */ |
|
module.exports = getInferredName && inferred.name === 'inferred' ? getInferredName : null;
|
|
|