🎯 pluginLoader.ts

This commit is contained in:
nirholas
2026-03-31 10:24:25 +00:00
parent 80f7bcf1ba
commit f882817552

View File

@@ -3300,3 +3300,4 @@ export function cachePluginSettings(plugins: LoadedPlugin[]): void {
function isRecord(value: unknown): value is Record<string, unknown> { function isRecord(value: unknown): value is Record<string, unknown> {
return typeof value === 'object' && value !== null && !Array.isArray(value) return typeof value === 'object' && value !== null && !Array.isArray(value)
} }