src/config.ts
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 20
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 8
mnd 0
bc 0
fnc 0
dl 0
loc 20
ccs 4
cts 4
cp 1
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
1
/**
2
 * Default beep frequency in hertz.
3
 */
4 3
export const DEFAULT_FREQUENCY = 440
5
6
/**
7
 * Default beep length in milliseconds.
8
 */
9 3
export const DEFAULT_LENGTH = 200
10
11
/**
12
 * Character to separate notes in beep sequence URL hash.
13
 */
14 3
export const NOTE_DELIMITER = '|'
15
16
/**
17
 * Character to separate parameters in notes in beep sequence URL hash.
18
 */
19
export const PARAMETER_DELIMITER = '^'
20