UNPKG

334 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = isLet;
7
8var _generated = require("./generated");
9
10var _constants = require("../constants");
11
12function isLet(node) {
13 return (0, _generated.isVariableDeclaration)(node) && (node.kind !== "var" || node[_constants.BLOCK_SCOPED_SYMBOL]);
14}
\No newline at end of file