sounds_of_kraz
v0.6.1
Published
Use a custom exception class that includes sound
Readme
USAGE
import {SoundError} from "sounds_of_kraz"
const throwOutException = () => {
throw new SoundError()
}
try {
throwOutException()
} catch (e) {
console.log(e)
}
