UNPKG

@fbltd/async

Version:

Miscellaneous async utils

8 lines (7 loc) 168 B
export function isObjectsContentEqual(obj1, obj2) { for (let key in obj1) { if (obj1[key] !== obj2[key]) return false; } return true; }