You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
416 B
JavaScript

"use strict";
const either = require("@validatem/either");
// FIXME: Maybe change this to include auto-wrapping strings, and change/reorder is-value-expression to prioritize string literal wrapping instead?
module.exports = function (operations) {
const isObjectType = require("./is-object-type")(operations);
return either([
[ isObjectType("columnName") ],
[ isObjectType("foreignColumnName") ],
]);
};