forked from extern/bruno
6 lines
165 B
JavaScript
6 lines
165 B
JavaScript
import find from 'lodash/find';
|
|
|
|
export const findCollectionByUid = (collections, collectionUid) => {
|
|
return find(collections, (c) => c.uid === collectionUid);
|
|
};
|