1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/utils/general.js
2016-06-14 17:58:00 +02:00

17 lines
378 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,
safeMerge,
sanitize,
sanitizeList,
selectFromObject
} from 'js-utility-belt/es6';