Passed
Branch master (fbf0a6)
by Volodymyr
04:04
created

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

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
cc 0
eloc 7
nc 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
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
});