UNPKG
@tbea_npm/sdk
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.2
WorkPlusFE JavaScript SDK.
@tbea_npm/sdk
/
util
/
tel.js
12 lines
(11 loc)
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
/** * 打电话 *
@param
{
Options
} [options] *
@returns
{
void
} */
function
tel
(
options
) {
window
.
location
.
href
=
"tel:"
+ options.
number
; }
exports
.
default
= tel;