aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs')
-rw-r--r--vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs16
1 files changed, 0 insertions, 16 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs b/vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs
deleted file mode 100644
index d24e7ce..0000000
--- a/vanilla/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict';
-
-const createCustomError = require('../utils/create-custom-error.cjs');
-
-function SyntaxError(message, input, offset) {
- return Object.assign(createCustomError.createCustomError('SyntaxError', message), {
- input,
- offset,
- rawMessage: message,
- message: message + '\n' +
- ' ' + input + '\n' +
- '--' + new Array((offset || input.length) + 1).join('-') + '^'
- });
-}
-
-exports.SyntaxError = SyntaxError;