utils.js 405 B

123456789101112131415161718192021
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.isIE = void 0;
  6. /**
  7. * Created by hustcc on 18/6/22.
  8. * Contract: i@hust.cc
  9. */
  10. /**
  11. * whether is ie, should do something special for ie
  12. * @returns {RegExpMatchArray | null}
  13. */
  14. var isIE = function isIE() {
  15. return navigator.userAgent.match(/Trident/) || navigator.userAgent.match(/Edge/);
  16. };
  17. exports.isIE = isIE;