aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/istanbul-reports/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/istanbul-reports/index.js')
-rw-r--r--vanilla/node_modules/istanbul-reports/index.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/vanilla/node_modules/istanbul-reports/index.js b/vanilla/node_modules/istanbul-reports/index.js
deleted file mode 100644
index f0a7aa3..0000000
--- a/vanilla/node_modules/istanbul-reports/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-/*
- Copyright 2012-2015, Yahoo Inc.
- Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
- */
-const path = require('path');
-
-module.exports = {
- create(name, cfg) {
- cfg = cfg || {};
- let Cons;
- try {
- Cons = require(path.join(__dirname, 'lib', name));
- } catch (e) {
- if (e.code !== 'MODULE_NOT_FOUND') {
- throw e;
- }
-
- Cons = require(name);
- }
-
- return new Cons(cfg);
- }
-};