window.js 470 B

1234567891011
  1. /*!
  2. * global/window.js
  3. * https://github.com/RobinHerbots/Inputmask
  4. * Copyright (c) 2010 - 2018 Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 4.0.3-beta.6
  7. */
  8. if (typeof define === "function" && define.amd) define(function() {
  9. return window || new (eval("require('jsdom')")("").window)();
  10. }); else if (typeof exports === "object") module.exports = window || new (eval("require('jsdom')")("").window)();