A simple library to play DTMF tones using Web Audio API
npm install play-dtmfThis is a simple library that allows playing DTMF and ringing tones using Web Audio API.
It should work in any browser supporting Web Audio API.
``javascript``
import {PhoneTonePlayer} from 'play-dtmf';
const audioContext = new AudioContext();
const phoneTonePlayer = new PhoneTonePlayer(audioContext);
const tone = phoneTonePlayer.playDtmf('1');
tone.stop(1000)
* Improve tests.
* Improve documentation.