Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | 'use strict'; |
||
2 | |||
3 | module.exports = function (gulp, paths, plugins, options) { |
||
4 | return function () { |
||
5 | return plugins.browserSync.init({ |
||
6 | //browsersync with a php server |
||
7 | proxy: options.url, |
||
8 | notify: options.notifications |
||
9 | }); |
||
10 | }; |
||
11 | }; |