PluginProbe
Booking Calendar / 11.8.4
Booking Calendar v11.8.4
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
booking / vendors / imask / esm / masked / function.js

function.js in Booking Calendar 11.8.4, at vendors/imask/esm/masked/function.js

32 lines 562 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import Masked from './base.js';
2 import IMask from '../core/holder.js';
3 import '../core/change-details.js';
4 import '../core/continuous-tail-details.js';
5 import '../core/utils.js';
6
7 /** Masking by custom Function */
8 class MaskedFunction extends Masked {
9 /** */
10
11 /** Enable characters overwriting */
12
13 /** */
14
15 /** */
16
17 /** */
18
19 updateOptions(opts) {
20 super.updateOptions(opts);
21 }
22 _update(opts) {
23 super._update({
24 ...opts,
25 validate: opts.mask
26 });
27 }
28 }
29 IMask.MaskedFunction = MaskedFunction;
30
31 export { MaskedFunction as default };
32