UNPKG

@daysnap/utils

Version:
13 lines (11 loc) 244 B
// src/makePhoneCall.ts function makePhoneCall(phoneNumber) { const a = document.createElement("a"); a.href = `tel:${phoneNumber}`; document.body.appendChild(a); a.click(); document.body.removeChild(a); } export { makePhoneCall };