MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / getBaseExtensionOptions

Function getBaseExtensionOptions

src/lib/editorManager.js:433–441  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

431 }
432
433 function getBaseExtensionOptions() {
434 const values = appSettings?.value || {};
435 return Object.fromEntries(
436 Object.entries(baseExtensionDefaults).map(([key, defaultValue]) => [
437 key,
438 values[key] ?? defaultValue,
439 ]),
440 );
441 }
442
443 function createConfiguredBaseExtensions() {
444 return createBaseExtensions(getBaseExtensionOptions());

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected