Browse
For agents
About
Booking Calendar
/
11.8
Booking Calendar
v11.8
Switch version
11.8.4
11.8.3
11.8.2
11.8.1
11.8
11.7
11.6.1
11.6
11.5
11.4.3
11.4.2
11.4.1
11.4
11.3
11.2.1
11.2
11.1
11.0
10.15.7
10.15.6
10.1.3
10.10
10.10.1
10.10.2
10.11
All 204 releases
Overview
Code
booking
/
vendors
/
imask
/
esm
/
core
/
holder.js
holder.js
in Booking Calendar 11.8, at vendors/imask/esm/core/holder.js
8 lines
184 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/**
Applies mask on element
*/
2
function
IMask
(
el
,
opts
)
{
3
//
currently available only for input-like elements
4
return
new
IMask
.
InputMask
(
el
,
opts
)
;
5
}
6
7
export
{
IMask
as
default
}
;
8