mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-08 03:39:13 +08:00
14 lines
No EOL
349 B
Text
14 lines
No EOL
349 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isBlockScoped;
|
|
|
|
var _generated = require("./generated");
|
|
|
|
var _isLet = require("./isLet");
|
|
|
|
function isBlockScoped(node) {
|
|
return (0, _generated.isFunctionDeclaration)(node) || (0, _generated.isClassDeclaration)(node) || (0, _isLet.default)(node);
|
|
} |