aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js
deleted file mode 100644
index 488b71a0..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/istanbul/lib/util/input-error.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- Copyright (c) 2012, Yahoo! Inc. All rights reserved.
- Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
- */
-
-module.exports.create = function (message) {
- var err = new Error(message);
- err.inputError = true;
- return err;
-};
-
-