persona-community-5/.pnpm-store/v3/files/db/3666c7b352bbc3442214e318440326a30f0995667a7140ea9b561899d090a32bc1f2485b0f719e9630d8312f80ec6f25139cca54581ce030117a675fbe8247
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
384 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isLet;
var _index = require("./generated/index.js");
var BLOCK_SCOPED_SYMBOL = Symbol.for("var used to be block scoped");
function isLet(node) {
return (0, _index.isVariableDeclaration)(node) && (node.kind !== "var" || node[BLOCK_SCOPED_SYMBOL]);
}
//# sourceMappingURL=isLet.js.map