UNPKG
imask
Version:
beta (6.0.0-alpha.0)
latest (7.6.1)
next (7.5.1-alpha.0)
7.6.1
7.6.0
7.5.1-alpha.0
7.5.0
7.4.0
7.3.0
7.2.1
7.2.0
7.1.3
7.1.2
7.1.1
7.1.0-alpha.2
7.1.0-alpha.1
7.1.0-alpha.0
7.0.1
7.0.1-alpha.1
7.0.1-alpha.0
7.0.0
7.0.0-alpha.6
7.0.0-alpha.5
7.0.0-alpha.4
7.0.0-alpha.3
7.0.0-alpha.2
7.0.0-alpha.1
7.0.0-alpha.0
6.6.3
6.6.2
6.6.1
6.6.1-alpha.2
6.6.1-alpha.1
6.6.1-alpha.0
6.6.0
6.6.0-alpha.0
6.5.1
6.5.1-alpha.1
6.5.1-alpha.0
6.5.0
6.5.0-alpha.1
6.5.0-alpha.0
6.4.3
6.4.3-alpha.0
6.4.2
6.4.1-alpha.0
6.4.0
6.3.0
6.3.0-alpha.0
6.2.2
6.2.0
6.1.0
6.0.7
6.0.6
6.0.5
6.0.3
6.0.2
6.0.1
6.0.0
6.0.0-alpha.0
5.2.1
5.2.0
5.1.9
5.1.8
5.1.7
5.1.6
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
5.0.0
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
3.4.0
3.3.0
3.2.4
3.2.3
3.2.2
3.1.2
3.1.1
3.1.0
3.0.0
2.2.0
2.1.1
2.1.0
2.0.1
2.0.0
1.2.4
1.2.3
1.2.1
1.2.0
vanilla javascript input mask
imask.js.org
uNmAnNeR/imaskjs
imask
/
esm
/
core
/
holder.js
8 lines
(6 loc)
•
184 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/** Applies mask on element */
function
IMask
(
el, opts
) {
// currently available only for input-like elements
return
new
IMask
.
InputMask
(el, opts); }
export
{
IMask
as
default
};