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.

17 lines
488 B
JavaScript

4 years ago
"use strict";
const either = require("@validatem/either");
const isString = require("@validatem/is-string");
const isDate = require("@validatem/is-date");
const isBoolean = require("@validatem/is-boolean");
const isNumber = require("@validatem/is-number");
4 years ago
const wrapError = require("@validatem/wrap-error");
4 years ago
// FIXME: Add null, but not undefined
4 years ago
module.exports = wrapError("Must be a literal value", either([
4 years ago
isString,
isNumber, // FIXME: Disallow Infinity?
isBoolean,
isDate
4 years ago
]));