1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/utils/general.js

17 lines
378 B
JavaScript
Raw Normal View History

2015-12-08 20:55:13 +01:00
/**
* Checks shallow equality
* Re-export of shallow from shallow-equals
*/
export { default as isShallowEqual } from 'shallow-equals';
2016-06-13 15:57:50 +02:00
// Re-export general utilities from js-utility-belt for easier access
export {
deepMatchObject,
intersectLists,
omitFromObject,
safeMerge,
sanitize,
sanitizeList,
selectFromObject
2016-06-13 15:57:50 +02:00
} from 'js-utility-belt/es6';