work.suroh.tk/node_modules/browser-sync/dist/cli/transforms/appendServerIndexOption.js

13 lines
452 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function appendServerIndexOption(incoming) {
if (!incoming.get('server'))
return [incoming, []];
var value = incoming.get('index');
if (value) {
return [incoming.setIn(['server', 'index'], value), []];
}
return [incoming, []];
}
exports.appendServerIndexOption = appendServerIndexOption;
//# sourceMappingURL=appendServerIndexOption.js.map