inputmask.dependencyLib.jquery.js 562 B

12345678910111213141516171819
  1. /*!
  2. * dependencyLibs/inputmask.dependencyLib.jquery.js
  3. * https://github.com/RobinHerbots/Inputmask
  4. * Copyright (c) 2010 - 2019 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 4.0.9
  7. */
  8. (function(factory) {
  9. if (typeof define === "function" && define.amd) {
  10. define([ "jquery" ], factory);
  11. } else if (typeof exports === "object") {
  12. module.exports = factory(require("jquery"));
  13. } else {
  14. window.dependencyLib = factory(jQuery);
  15. }
  16. })(function($) {
  17. return $;
  18. });