mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 17:09:30 +08:00
16 lines
No EOL
333 B
Text
16 lines
No EOL
333 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isVar;
|
|
|
|
var _generated = require("./generated");
|
|
|
|
var _constants = require("../constants");
|
|
|
|
function isVar(node) {
|
|
return (0, _generated.isVariableDeclaration)(node, {
|
|
kind: "var"
|
|
}) && !node[_constants.BLOCK_SCOPED_SYMBOL];
|
|
} |