-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverifyer.js
48 lines (41 loc) · 946 Bytes
/
verifyer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
const { failType } = require('./util');
exports.verifyer = verifyer;
/**
* @typedef {null | boolean | number | string} LiteralValue
* @typedef {undefined | LiteralValue | ArrayValue | ObjectValue} Value
* @typedef {Value[]} ArrayValue
* @typedef {{ [k: string]: Value }} ObjectValue
*/
/**
* @template V
* @callback Tester
* @param {V} value
* @param {string | null} [base]
* @returns {boolean | undefined}
*/
/**
* @typedef SchemaOptions
* @property {string} [error_code]
*/
/**
* @template V
* @callback Verifyer
* @param {V} value
* @param {SchemaOptions} [options]
* @param {string} [base]
* @returns {V}
*/
/**
* @template V
* @param {Tester<V>} test
* @returns {Verifyer<V>}
*/
function verifyer(test) {
return (value, options = {}, base = undefined) => {
if (test(value, base) === false) {
failType(test.toString(), value, base, options.error_code);
}
return value;
};
}