(value: unknown)
| 234 | export type TweakSchema = Record<string, TokenSchemaEntry>; |
| 235 | |
| 236 | function isPlainObject(value: unknown): value is Record<string, unknown> { |
| 237 | return value !== null && typeof value === 'object' && !Array.isArray(value); |
| 238 | } |
| 239 | |
| 240 | function hasOwn(value: Record<string, unknown>, key: string): boolean { |
| 241 | return Object.prototype.hasOwnProperty.call(value, key); |
no outgoing calls
no test coverage detected