Welcome to mirror list, hosted at ThFree Co, Russian Federation.

util.js « u2f « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 907e640161a41998f98fde9f76936c4973eb6f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function() {
  this.U2FUtil = (function() {
    function U2FUtil() {}

    U2FUtil.isU2FSupported = function() {
      return window.u2f;
    };

    return U2FUtil;

  })();

}).call(this);