Skip to content

Commit b4a1e74

Browse files
committed
refactor(*): lint
1 parent a49da24 commit b4a1e74

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/std/src/results/utils/internal/handlers.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { isPromise, type BlobType } from '../../../shared'
1+
import { type BlobType, isPromise } from '../../../shared'
22

33
import { resultTags } from '../../tag'
44
import { ResultAsync } from '../async'
5-
import { err, Err } from '../err'
6-
import { ok, Ok } from '../ok'
5+
import { Err, err } from '../err'
6+
import { Ok, ok } from '../ok'
77

88
const invalidUsage = resultTags.get('invalid-usage')
99

packages/std/tests/results/fn.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { test, describe, expect } from 'bun:test'
1+
import { describe, expect, test } from 'bun:test'
22

3-
import { $fn, Err, err, errAsync, ok, Ok, okAsync, ResultAsync } from '../../dist/results'
3+
import { $fn, Err, Ok, ResultAsync, err, errAsync, ok, okAsync } from '../../dist/results'
44
import { wait } from '../../src/shared/utils/timing'
55

66
describe('std/results/fn', () => {

0 commit comments

Comments
 (0)