mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:29:29 +08:00
9 lines
No EOL
346 B
Text
9 lines
No EOL
346 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isNullLiteral = void 0;
|
|
const utils_1 = require("@typescript-eslint/utils");
|
|
function isNullLiteral(i) {
|
|
return i.type === utils_1.AST_NODE_TYPES.Literal && i.value === null;
|
|
}
|
|
exports.isNullLiteral = isNullLiteral;
|
|
//# sourceMappingURL=isNullLiteral.js.map |