mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-29 01:20:53 +02:00
5 lines
178 B
JavaScript
5 lines
178 B
JavaScript
import find from 'lodash/find';
|
|
|
|
export const findCollectionInWorkspace = (workspace, collectionUid) => {
|
|
return find(workspace.collections, (c) => c.uid === collectionUid);
|
|
}; |