dist/util/validator.js   A
last analyzed

Complexity

Total Complexity 7
Complexity/F 3.5

Size

Lines of Code 37
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 15
dl 0
loc 37
ccs 12
cts 12
cp 1
rs 10
c 0
b 0
f 0
wmc 7
mnd 5
bc 5
fnc 2
bpm 2.5
cpm 3.5
noi 0

2 Functions

Rating   Name   Duplication   Size   Complexity  
A validator.js ➔ validateInt 0 11 4
A validator.js ➔ validateStr 0 8 3
1
/**
2
 * @license
3
 * Copyright (c) 2020 UMI
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in all
13
 * copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
 * SOFTWARE.
22
 */
23
24
'use strict'
25
26
/**
27
 * @param arg
28
 * @param {number} min
29
 * @param {number} max
30
 * @throws {Error}
31
 * @private
32
 */
33
function validateInt (arg, min, max) {
34 53
  if (typeof arg !== 'number') {
35 1
    throw new Error('invalid type')
36
  }
37 52
  if (Math.floor(arg) !== arg) {
38 1
    throw new Error('invalid integer')
39
  }
40 51
  if (arg < min || arg > max) {
41 1
    throw new Error('invalid value')
42
  }
43
}
44
/**
45
 * @param arg
46
 * @param {number} [len]
47
 * @throws {Error}
48
 * @private
49
 */
50
function validateStr (arg, len) {
51 66
  if (typeof arg !== 'string') {
52 1
    throw new Error('invalid type')
53
  }
54 65
  if (typeof len !== 'undefined' && arg.length !== len) {
55 4
    throw new Error('invalid length')
56
  }
57
}
58
59 1
exports.validateInt = validateInt
60
exports.validateStr = validateStr
61