1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00
onion/js/utils/general.js
2016-07-08 18:39:47 +02:00

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';