@loopback/docs
Version:
Documentation for LoopBack 4
36 lines (23 loc) • 1.25 kB
Markdown
---
lang: en
title: 'API docs: context.resolveuntil'
keywords: LoopBack 4.0, LoopBack 4
sidebar: lb4_sidebar
permalink: /doc/en/lb4/apidocs.context.resolveuntil.html
---
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/context](./context.md) > [resolveUntil](./context.resolveuntil.md)
## resolveUntil() function
Resolve an iterator of source values into a result until the evaluator returns `true`
<b>Signature:</b>
```typescript
export declare function resolveUntil<T, V>(source: Iterator<T>, resolver: (sourceVal: T) => ValueOrPromise<V | undefined>, evaluator: (sourceVal: T, targetVal: V | undefined) => boolean): ValueOrPromise<V | undefined>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| source | <code>Iterator<T></code> | The iterator of source values |
| resolver | <code>(sourceVal: T) => ValueOrPromise<V | undefined></code> | The resolve function that maps the source value to a result |
| evaluator | <code>(sourceVal: T, targetVal: V | undefined) => boolean</code> | The evaluate function that decides when to stop |
<b>Returns:</b>
`ValueOrPromise<V | undefined>`