import eachOperation from'./each-operation.js';
// Will stop iterating over the operations and return the operationObj// as soon as predicate returns trueexportdefaultfunctionfindOperation(spec, predicate) {
returneachOperation(spec, predicate, true) || null;
}