forked from validatem/core
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.
13 lines
450 B
JavaScript
13 lines
450 B
JavaScript
"use strict";
|
|
|
|
// Forcibly import this module before anything else, to make our cyclical dependency hack work (details are in ./src/compose-rules.js)
|
|
require("./src/compose-rules");
|
|
|
|
module.exports = {
|
|
validateArguments: require("./src/api/validate-arguments"),
|
|
validateOptions: require("./src/api/validate-options"),
|
|
validateValue: require("./src/api/validate-value"),
|
|
|
|
AggregrateValidationError: require("./src/aggregrate-validation-error")
|
|
};
|