summaryrefslogtreecommitdiffstats
path: root/webapp/non_npm_dependencies/katex/src/Settings.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/non_npm_dependencies/katex/src/Settings.js')
-rw-r--r--webapp/non_npm_dependencies/katex/src/Settings.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/webapp/non_npm_dependencies/katex/src/Settings.js b/webapp/non_npm_dependencies/katex/src/Settings.js
deleted file mode 100644
index 644014504..000000000
--- a/webapp/non_npm_dependencies/katex/src/Settings.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * This is a module for storing settings passed into KaTeX. It correctly handles
- * default settings.
- */
-
-/**
- * Helper function for getting a default value if the value is undefined
- */
-function get(option, defaultValue) {
- return option === undefined ? defaultValue : option;
-}
-
-/**
- * The main Settings object
- *
- * The current options stored are:
- * - displayMode: Whether the expression should be typeset by default in
- * textstyle or displaystyle (default false)
- */
-function Settings(options) {
- // allow null options
- options = options || {};
- this.displayMode = get(options.displayMode, false);
- this.throwOnError = get(options.throwOnError, true);
- this.errorColor = get(options.errorColor, "#cc0000");
-}
-
-module.exports = Settings;