Skip to content

Commit

Permalink
fix: import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jeengbe committed Jul 23, 2024
1 parent 6e9ddc8 commit 8572fb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/asynciterable/operators/skip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AsyncIterableX } from '../asynciterablex.js';
import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js';
import { wrapWithAbort } from './withabort.js';
import { throwIfAborted } from '../../aborterror.js';
import { returnAsyncIterator } from 'ix/util/returniterator.js';
import { returnAsyncIterator } from '../../util/returniterator.js';

/** @ignore */
export class SkipAsyncIterable<TSource> extends AsyncIterableX<TSource> {
Expand Down
2 changes: 1 addition & 1 deletion src/iterable/operators/skip.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IterableX } from '../iterablex.js';
import { MonoTypeOperatorFunction } from '../../interfaces.js';
import { returnIterator } from 'ix/util/returniterator.js';
import { returnIterator } from '../../util/returniterator.js';

/** @ignore */
export class SkipIterable<TSource> extends IterableX<TSource> {
Expand Down

0 comments on commit 8572fb7

Please sign in to comment.