gulp/tasks/setDevelopment.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 6
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
mnd 0
bc 0
fnc 2
dl 0
loc 6
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A setDevelopment.js ➔ setDevelopment 0 4 2
1
module.exports = function (gulp, plugins, config, env) {
2
  return function setDevelopment(done) {
3
    plugins.environments.current(env.development);
4
    done();
5
  };
6
};
7