"use strict"; // NOTE: For use with eg. allowExtraProperties, to blacklist certain specific properties const ValidationError = require("@validatem/error"); module.exports = function (value) { if (value !== undefined) { throw new ValidationError("Value exists in a place that should be empty"); } };