Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
605 B
Plaintext
21 lines
605 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function getDef() {
|
|
return {
|
|
keyword: "allRequired",
|
|
type: "object",
|
|
schemaType: "boolean",
|
|
macro(schema, parentSchema) {
|
|
if (!schema)
|
|
return true;
|
|
const required = Object.keys(parentSchema.properties);
|
|
if (required.length === 0)
|
|
return true;
|
|
return { required };
|
|
},
|
|
dependencies: ["properties"],
|
|
};
|
|
}
|
|
exports.default = getDef;
|
|
module.exports = getDef;
|
|
//# sourceMappingURL=allRequired.js.map |