view/base/web/js/model/invisible-captcha.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 10
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 7
c 0
b 0
f 0
dl 0
loc 10
rs 10
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0
1
/*
2
 * Copyright (c) 2019. Volodymyr Hryvinskyi.  All rights reserved.
3
 * @author: <mailto:[email protected]>
4
 * @github: <https://github.com/hryvinskyi>
5
 */
6
7
define(['ko'], function (ko) {
8
    'use strict';
9
10
    return {
11
        isApiLoad: ko.observable(false),
12
        isApiLoaded: ko.observable(false),
13
        initializeForms: ko.observableArray([]),
14
        initializedForms: ko.observableArray([])
15
    };
16
});