Completed
Branch v16.x (06437a)
by Rafael S.
01:59
created

validation.js ➔ validateIsNumber   A

Complexity

Conditions 5
Paths 4

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 5
c 0
b 0
f 0
nc 4
nop 1
dl 0
loc 8
rs 9.3333
1
/*
2
 * Copyright (c) 2017-2018 Rafael da Silva Rocha.
3
 *
4
 * Permission is hereby granted, free of charge, to any person obtaining
5
 * a copy of this software and associated documentation files (the
6
 * "Software"), to deal in the Software without restriction, including
7
 * without limitation the rights to use, copy, modify, merge, publish,
8
 * distribute, sublicense, and/or sell copies of the Software, and to
9
 * permit persons to whom the Software is furnished to do so, subject to
10
 * the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be
13
 * included in all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
 *
23
 */
24
25
/**
26
 * @fileoverview Functions to validate input.
27
 * @see https://github.com/rochars/byte-data
28
 */
29
30
const TYPE_ERR = 'Unsupported type';
31
32
/**
33
 * Validate that the value is not null or undefined.
34
 * @param {*} value The value.y.
35
 * @throws {Error} If the value is not Number or Boolean.
36
 * @throws {Error} If the value is NaN, Infinity or -Infinity.
37
 */
38
export function validateIsInt(value) {
39
  validateIsNumber(value);
40
  if (value !== value || value === Infinity || value === -Infinity) {
41
    throwValueErr_('integer');
42
  }
43
}
44
45
/**
46
 * Validate that the value is not null or undefined.
47
 * @param {*} value The value.
48
 * @throws {Error} If the value is not Number or Boolean.
49
 */
50
export function validateIsNumber(value) {
51
  if (value === undefined || value === null) {
52
    throwValueErr_();
53
  }
54
  if (value.constructor != Number && value.constructor != Boolean) {
55
    throwValueErr_();
56
  }
57
}
58
59
/**
60
 * Validate the type definition of floating-point numbers.
61
 * @param {number} bits The number of bits.
62
 * @throws {Error} If the type definition is not valid.
63
 * @private
64
 */
65
export function validateFloatType(bits) {
66
  if (!bits || bits !== 16 && bits !== 32 && bits !== 64) {
67
    throw new Error(TYPE_ERR + ': float, bits: ' + bits);
68
  }
69
}
70
71
/**
72
 * Validate the type definition of integers.
73
 * @param {number} bits The number of bits.
74
 * @throws {Error} If the type definition is not valid.
75
 * @private
76
 */
77
export function validateIntType(bits) {
78
  if (!bits || bits < 1 || bits > 53) {
79
    throw new Error(TYPE_ERR + ': int, bits: ' + bits);
80
  }
81
}
82
83
/**
84
 * Throw a error about the input value.
85
 * @param {string} theType The name of the type the value was expected to be.
86
 * @throws {Error} Always when called.
87
 * @private
88
 */
89
function throwValueErr_(theType='valid number') {
90
  throw new Error('Argument is not a ' + theType);
91
}
92