2025-09-24 06:24:52 +00:00
|
|
|
/*
|
|
|
|
|
Input Mask plugin dependencyLib
|
|
|
|
|
http://github.com/RobinHerbots/jquery.inputmask
|
|
|
|
|
Copyright (c) Robin Herbots
|
|
|
|
|
Licensed under the MIT license
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import jQuery from "jquery";
|
|
|
|
|
|
|
|
|
|
if (jQuery === undefined) {
|
2025-10-03 11:00:05 +00:00
|
|
|
throw "jQuery not loaded!";
|
2025-09-24 06:24:52 +00:00
|
|
|
}
|
2025-10-03 11:00:05 +00:00
|
|
|
export default jQuery;
|