MCPcopy Create free account
hub / github.com/sql-js/sql.js / keywordMatch

Function keywordMatch

documentation/javascript/application.js:432–438  ·  view source on GitHub ↗
(mode, match)

Source from the content-addressed store, hash-verified

430 }
431
432 function keywordMatch(mode, match) {
433 var match_str = language.case_insensitive ? match[0].toLowerCase() : match[0];
434 var value = mode.keywords[match_str];
435 if (value && value instanceof Array)
436 return value;
437 return false;
438 }
439
440 function processKeywords(buffer, mode) {
441 buffer = escape(buffer);

Callers 1

processKeywordsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…