summaryrefslogtreecommitdiff
path: root/alarm/node_modules/pronote-api/src/data/html.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/pronote-api/src/data/html.js')
-rw-r--r--alarm/node_modules/pronote-api/src/data/html.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/alarm/node_modules/pronote-api/src/data/html.js b/alarm/node_modules/pronote-api/src/data/html.js
deleted file mode 100644
index 33a4f0d..0000000
--- a/alarm/node_modules/pronote-api/src/data/html.js
+++ /dev/null
@@ -1,16 +0,0 @@
-const { stripHtml } = require('string-strip-html');
-
-function fromHTML(text)
-{
- if (!text) {
- if (text === undefined) {
- return null;
- }
-
- return text;
- }
-
- return stripHtml(text).result;
-}
-
-module.exports = fromHTML;