lix-website/themes/lix/assets/bootstrap/node_modules/eslint-module-utils/declaredScope.js
2024-04-26 22:49:34 -06:00

12 lines
380 B
JavaScript

'use strict';
exports.__esModule = true;
/** @type {import('./declaredScope').default} */
exports.default = function declaredScope(context, name) {
const references = context.getScope().references;
const reference = references.find((x) => x.identifier.name === name);
if (!reference || !reference.resolved) { return undefined; }
return reference.resolved.scope.type;
};