@daysnap/utils
Version:
13 lines (9 loc) • 330 B
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true});// 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);
}
exports.makePhoneCall = makePhoneCall;