UNPKG

@wxn0brp/db

Version:

A simple file-based database management system with support for CRUD operations, custom queries, and graph structures.

8 lines (7 loc) 273 B
/** * Checks if an object matches the standard field comparison. * @param obj - The object to check. * @param fields - Criteria to compare. * @returns Whether the object matches the criteria. */ export default function hasFields(obj: Object, fields: Object): boolean;