bruno/renderer/utils/collections/index.js
2022-03-18 02:59:10 +05:30

6 lines
165 B
JavaScript

import find from 'lodash/find';
export const findCollectionByUid = (collections, collectionUid) => {
return find(collections, (c) => c.uid === collectionUid);
};