aboutsummaryrefslogtreecommitdiff
path: root/node_modules/istanbul-lib-coverage/README.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/istanbul-lib-coverage/README.md
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/istanbul-lib-coverage/README.md')
-rw-r--r--node_modules/istanbul-lib-coverage/README.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/node_modules/istanbul-lib-coverage/README.md b/node_modules/istanbul-lib-coverage/README.md
deleted file mode 100644
index 8e98eb579..000000000
--- a/node_modules/istanbul-lib-coverage/README.md
+++ /dev/null
@@ -1,33 +0,0 @@
-istanbul-lib-coverage
----------------------
-
-[![Greenkeeper badge](https://badges.greenkeeper.io/istanbuljs/istanbul-lib-coverage.svg)](https://greenkeeper.io/)
-[![Build Status](https://travis-ci.org/istanbuljs/istanbul-lib-coverage.svg?branch=master)](https://travis-ci.org/istanbuljs/istanbul-lib-coverage)
-
-An API that provides a read-only view of coverage information with the ability
-to merge and summarize coverage info.
-
-Supersedes `object-utils` and `collector` from the v0 istanbul API.
-
-See the docs for the full API.
-
-```js
-
-var libCoverage = require('istanbul-lib-coverage');
-var map = libCoverage.createCoverageMap(globalCoverageVar);
-var summary = libCoverage.createCoverageSummary();
-
-// merge another coverage map into the one we created
-map.merge(otherCoverageMap);
-
-// inspect and summarize all file coverage objects in the map
-map.files().forEach(function (f) {
- var fc = map.fileCoverageFor(f),
- s = fc.toSummary();
- summary.merge(s);
-});
-
-console.log('Global summary', summary);
-
-```
-