Completed
Push — master ( 78b7d3...971ae6 )
by Thomas
49s queued 29s
created

module.exports   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
c 1
b 0
f 0
nc 3
dl 0
loc 9
rs 9.6666
nop 0
1
/*
2
 * Copyright (c) 2018 Includable.
3
 * Created by Thomas Schoffelen.
4
 */
5
6
const Plugins = require('../../util/Plugins')
7
8
module.exports = function () {
9
  for (var x in Plugins.plugins) {
10
    if (!Plugins.plugins.hasOwnProperty(x)) {
11
      continue
12
    }
13
14
    Plugins.describePlugin(Plugins.plugins[x])
15
  }
16
}
17