rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
13 lines (12 loc) • 377 B
TypeScript
/**
* this is copied from
* @link https://github.com/aheckmann/mquery/blob/master/lib/utils.js
*/
/**
* Merges 'from' into 'to' without overwriting existing properties.
*/
export declare function merge(to: any, from: any): any;
/**
* Determines if `arg` is an object.
*/
export declare function isObject(arg: Object | any[] | String | Function | RegExp | any): boolean;