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: 34e88220b128b46df4e7f54e246e1aab8f3d42aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable func-names, space-before-function-paren, wrap-iife */
(function() {
  this.U2FUtil = (function() {
    function U2FUtil() {}

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

    return U2FUtil;
  })();
}).call(this);