mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 06:39:12 +08:00
14 lines
No EOL
334 B
Text
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]);
|
|
} |