Поиск
Результаты:19
listing directory {directory}
~
{linked-path}
{files}
Code coverage report for All files
...
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
posthtml-parser/
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for posthtml-parser/
...
Statements
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
index.js
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for posthtml-parser/index.js
...
function postHTMLParser(html, options) {
var bufArray = [],
results = [];
bufArray.last = function() {
return this[this.length - 1];
};
function isDirective(directive, tag) {
if (directive.name instanceof RegExp) {
var regex = RegExp(directive.name.source, 'i');
return regex.test(tag);
}
if (tag !== directive.name) {
return false;
}
return true;
}
function parserDirective(name, data) {
var directives = [].concat(defaultDirectives, options.directives || []);
var last = bufArray.last();
for ...
Code coverage report for posthtml-parser/
...
Statements
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
index.js
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for posthtml-parser/index.js
...
function postHTMLParser(html, options) {
var bufArray = [],
results = [];
bufArray.last = function() {
return this[this.length - 1];
};
function isDirective(directive, tag) {
if (directive.name instanceof RegExp) {
var regex = RegExp(directive.name.source, 'i');
return regex.test(tag);
}
if (tag !== directive.name) {
return false;
}
return true;
}
function parserDirective(name, data) {
var directives = [].concat(defaultDirectives, options.directives || []);
var last = bufArray.last();
for ...
Code coverage report for posthtml-parser/index.js
...
function postHTMLParser(html, options) {
var bufArray = [],
results = [];
bufArray.last = function() {
return this[this.length - 1];
};
function isDirective(directive, tag) {
if (directive.name instanceof RegExp) {
var regex = RegExp(directive.name.source, 'i');
return regex.test(tag);
}
if (tag !== directive.name) {
return false;
}
return true;
}
function parserDirective(name, data) {
var directives = [].concat(defaultDirectives, options.directives || []);
var last = bufArray.last();
for ...
Code coverage report for posthtml-parser/
...
Statements
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
index.js
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for posthtml-parser/index.js
...
function postHTMLParser(html, options) {
var bufArray = [],
results = [];
bufArray.last = function() {
return this[this.length - 1];
};
function isDirective(directive, tag) {
if (directive.name instanceof RegExp) {
var regex = RegExp(directive.name.source, 'i');
return regex.test(tag);
}
if (tag !== directive.name) {
return false;
}
return true;
}
function parserDirective(name, data) {
var directives = [].concat(defaultDirectives, options.directives || []);
var last = bufArray.last();
for ...
Code coverage report for All files
...
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
posthtml-parser/
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for All files
...
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
posthtml-parser/
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for All files
...
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
posthtml-parser/
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for posthtml-parser/
...
Statements
75/75
96.97%
Branches
32/33
100%
Functions
12/12
100%
Lines
75/75
File
Statements
Branches
Functions
Lines
index.js
100%
75/75
96.97%
32/33
100%
12/12
100%
75/75
Code coverage
generated by
istanbul
at Fri Nov 08 2019 10:36:44 GMT+0300 (Moscow Standard Time)
Code coverage report for index.js
... / 2)
Functions:
100%
(1 / 1)
Lines:
100%
(4 / 4)
Ignored:
none
All files
»
__root__/
» index.js
1
2
3
4
5
6
7
8
9
1
1
1
6
'use strict'
var path = require('path')
var uniqueSlug = require('unique-slug')
module.exports = function (filepath, prefix, uniq) {
return path.join(filepath, (prefix ? prefix + '-' : '') + uniqueSlug(uniq))
}
Generated by
istanbul
at Thu Dec 03 2015 15:00:03 GMT-0800 (PST)
Code coverage report for All files
Code coverage report for
All files
Statements:
100%
(4 / 4)
Branches:
100%
(2 / 2)
Functions:
100%
(1 / 1)
Lines:
100%
(4 / 4)
Ignored:
none
File
Statements
Branches
Functions
Lines
__root__/
100%
(4 / 4)
100%
(2 / 2)
100%
(1 / 1)
100%
(4 / 4)
Generated by
istanbul
at Thu Dec 03 2015 15:00:03 GMT-0800 (PST)
Code coverage report for __root__/
Code coverage report for
__root__/
Statements:
100%
(4 / 4)
Branches:
100%
(2 / 2)
Functions:
100%
(1 / 1)
Lines:
100%
(4 / 4)
Ignored:
none
All files
» __root__/
File
Statements
Branches
Functions
Lines
index.js
100%
(4 / 4)
100%
(2 / 2)
100%
(1 / 1)
100%
(4 / ...
Webpack App
Svg Vector Icons : http://www.onlinewebfonts.com/icon
Советы экспертов
Дисбактериоз полости рта
... разновидностей микроорганизмов (стрептококки, лактобактерии, грибы роды Candida, стафилококки и др.), которые составляют его микрофлору, или микробиоту.... ... полости рта ополаскивателей без спирта и антисептиков, например,
АСЕПТА Parodontal Fresh
с растительными экстрактами и микроэлементами;
отказ от курения: желательно ...
Советы экспертов
Пробиотики для полости рта
... «переусердствовать» с ними, так как излишнее их количество провоцирует образование кариеса.
Штаммы бактерий Bacillus subtilis, L. salivarius WB21, L. casei Shirota, L. brevis, L. reuteri, L. acidophilus могут стать полезными при лечении периодонтальных заболеваний.
Кандидоз, наиболее распространенную причину дисбактериоза полости рта,...