Urara-Blog/node_modules/.pnpm-store/v3/files/ed/22fd3b2e30f979a5719a30c3f8f6c21ad7451086c1cf399d4e35801cdc13c41e5109842f14baa8322c0772920c9a107f92b674479139688e82d3c01d10cf41
2022-08-14 01:14:53 +08:00

14 lines
No EOL
334 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isLet;
var _generated = require("./generated");
var _constants = require("../constants");
function isLet(node) {
return (0, _generated.isVariableDeclaration)(node) && (node.kind !== "var" || node[_constants.BLOCK_SCOPED_SYMBOL]);
}