chore: finish migrating eslint config files; bump unicorn (#17200)

This commit is contained in:
Daniel Dietzler 2025-03-31 13:18:25 +02:00 committed by GitHub
parent e4f83680d9
commit 238c151ac3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 883 additions and 1286 deletions

View file

@ -121,7 +121,7 @@ class SqlGenerator {
for (const key of this.getPropertyNames(instance)) {
const target = instance[key];
if (!(target instanceof Function)) {
if (!(typeof target === 'function')) {
continue;
}