persona-community-5/.pnpm-store/v3/files/22/4084b192111cf5c779e73ec15360c2c9ed1a4b3953b27497c544a548779c400932e8d2c69f07b51a2de27c18e2d6d3a85a3b778f737fe7f8520cd7f835dcbe
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

16 lines
383 B
Plaintext

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