Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 20 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 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 |