You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
512 B
16 lines
512 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const dynamicAnchor_1 = require("./dynamicAnchor");
|
|
const util_1 = require("../../compile/util");
|
|
const def = {
|
|
keyword: "$recursiveAnchor",
|
|
schemaType: "boolean",
|
|
code(cxt) {
|
|
if (cxt.schema)
|
|
dynamicAnchor_1.dynamicAnchor(cxt, "");
|
|
else
|
|
util_1.checkStrictMode(cxt.it, "$recursiveAnchor: false is ignored");
|
|
},
|
|
};
|
|
exports.default = def;
|
|
//# sourceMappingURL=recursiveAnchor.js.map
|