mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
18 lines
394 B
JavaScript
18 lines
394 B
JavaScript
/**
|
|
* Checks shallow equality
|
|
* Re-export of shallow from shallow-equals
|
|
*/
|
|
export { default as isShallowEqual } from 'shallow-equals';
|
|
|
|
// Re-export general utilities from js-utility-belt for easier access
|
|
export {
|
|
deepMatchObject,
|
|
intersectLists,
|
|
omitFromObject,
|
|
safeInvoke,
|
|
safeMerge,
|
|
sanitize,
|
|
sanitizeList,
|
|
selectFromObject
|
|
} from 'js-utility-belt/es6';
|