mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
20 lines
273 B
JavaScript
20 lines
273 B
JavaScript
var PRESET_VALUES = [
|
|
"hz60",
|
|
"hz170",
|
|
"hz310",
|
|
"hz600",
|
|
"hz1000",
|
|
"hz3000",
|
|
"hz6000",
|
|
"hz12000",
|
|
"hz14000",
|
|
"hz16000",
|
|
"preamp",
|
|
];
|
|
|
|
var HEADER = "Winamp EQ library file v1.1";
|
|
|
|
module.exports = {
|
|
PRESET_VALUES: PRESET_VALUES,
|
|
HEADER: HEADER,
|
|
};
|