Files
MusicMetaFinder/src/utils/checkInputPath.js
xtrullor73 a97736abee refactor: remove AuDD references and unused project files
Removed all files, dependencies, and mentions related to the AuDD API. Cleaned up the src directory, removing all non-developed or unused items, as part of a major cleanup. This change is due to the strategic shift towards using audio fingerprinting for song recognition, as opposed to sending the raw audio file itself.
2024-05-09 23:40:46 -07:00

5 lines
148 B
JavaScript

export function checkInputPath(inputPath) {
if (!inputPath) {
throw new Error('Please provide the path to an audio file or directory.');
}
}