File comments

This commit is contained in:
Dominik Reh
2023-01-10 15:01:22 +01:00
parent 964b4fcff3
commit 984a7e772a
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
// Result data type for cleaner use of optional completion result properties
// Type enum
const ResultType = Object.freeze({
"tag": 1,

View File

@@ -1,3 +1,5 @@
// Utility functions for tag autocomplete
// Parse the CSV file into a 2D array. Doesn't use regex, so it is very lightweight.
function parseCSV(str) {
var arr = [];