Packages
A spellchecker for Elixir, made with Bun and cspell
Current section
Files
Jump to
Current section
Files
priv/bun/node_modules/cspell/dist/esm/util/cache/DummyCache.js
/**
* Dummy cache implementation that should be usd if caching option is disabled.
*/
export class DummyCache {
getCachedLintResults() {
return Promise.resolve(undefined);
}
setCachedLintResults() {
return;
}
reconcile() {
return;
}
reset() {
return;
}
}
//# sourceMappingURL=DummyCache.js.map