Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

Commit b4a80bf

Browse files
committed
Upgrade to call-thru v4
1 parent 3c14286 commit b4a80bf

11 files changed

+14
-11
lines changed

src/context-registry.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { valueProvider } from '@proc7ts/call-thru';
1+
import { valueProvider } from '@proc7ts/primitives';
22
import { ContextKey, ContextValueSetup, ContextValueSlot } from './context-key';
33
import { ContextKeyError } from './context-key-error';
44
import { ContextRegistry } from './context-registry';

src/context-registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values
44
*/
5-
import { noop } from '@proc7ts/call-thru';
5+
import { noop } from '@proc7ts/primitives';
66
import { ContextKey, ContextKey__symbol, ContextSeedKey, ContextValueSetup, ContextValueSlot } from './context-key';
77
import { ContextKeyError } from './context-key-error';
88
import { ContextRef, ContextRequest } from './context-ref';

src/context-value-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values
44
*/
5-
import { valueProvider } from '@proc7ts/call-thru';
5+
import { valueProvider } from '@proc7ts/primitives';
66
import { ContextRequest, ContextTarget } from './context-ref';
77
import { ContextValues } from './context-values';
88

src/iterative-context-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @module @proc7ts/context-values
44
*/
55
import { filterIt, flatMapIt, itsEmpty, mapIt, overNone } from '@proc7ts/a-iterable';
6-
import { isPresent, lazyValue } from '@proc7ts/call-thru';
6+
import { isPresent, lazyValue } from '@proc7ts/primitives';
77
import { ContextKey, ContextSeedKey } from './context-key';
88
import { ContextSeeder } from './context-seeder';
99
import { ContextValueProvider } from './context-value-spec';

src/multi-context-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values
44
*/
5-
import { valuesProvider } from '@proc7ts/call-thru';
5+
import { valuesProvider } from '@proc7ts/primitives';
66
import { ContextKey, ContextKeyDefault, ContextSeedKey, ContextValueSlot } from './context-key';
77
import { ContextRef } from './context-ref';
88
import { IterativeContextKey } from './iterative-context-key';

src/simple-context-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values
44
*/
5-
import { lazyValue, noop } from '@proc7ts/call-thru';
5+
import { lazyValue, noop } from '@proc7ts/primitives';
66
import { ContextKey, ContextSeedKey } from './context-key';
77
import { ContextSeeder } from './context-seeder';
88
import { ContextValueProvider } from './context-value-spec';

src/single-context-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values
44
*/
5-
import { noop } from '@proc7ts/call-thru';
5+
import { noop } from '@proc7ts/primitives';
66
import { ContextKey, ContextKeyDefault, ContextSeedKey, ContextValueSlot } from './context-key';
77
import { ContextRef } from './context-ref';
88
import { SimpleContextKey } from './simple-context-key';

src/updatable/context-up-key.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { nextArgs, noop } from '@proc7ts/call-thru';
1+
import { nextArgs } from '@proc7ts/call-thru';
22
import { AfterEvent, afterEventBy, EventKeeper, nextAfterEvent } from '@proc7ts/fun-events';
3+
import { noop } from '@proc7ts/primitives';
34
import { ContextValueSlot } from '../context-key';
45
import { ContextKeyError } from '../context-key-error';
56
import { ContextRegistry } from '../context-registry';

src/updatable/fn-context-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values/updatable
44
*/
5-
import { noop } from '@proc7ts/call-thru';
65
import { AfterEvent, afterThe, EventKeeper, nextAfterEvent } from '@proc7ts/fun-events';
6+
import { noop } from '@proc7ts/primitives';
77
import { ContextKeyDefault, ContextValueSlot } from '../context-key';
88
import { ContextKeyError } from '../context-key-error';
99
import { ContextValues } from '../context-values';

src/updatable/multi-context-up-key.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
* @packageDocumentation
33
* @module @proc7ts/context-values/updatable
44
*/
5-
import { nextArgs, noop } from '@proc7ts/call-thru';
5+
import { nextArgs } from '@proc7ts/call-thru';
66
import { AfterEvent, afterEventBy, afterThe, EventKeeper, nextAfterEvent } from '@proc7ts/fun-events';
7+
import { noop } from '@proc7ts/primitives';
78
import { ContextKeyDefault, ContextValueSlot } from '../context-key';
89
import { ContextKeyError } from '../context-key-error';
910
import { ContextSupply } from './context-supply';

0 commit comments

Comments
 (0)