Skip to content

Commit 0ac7514

Browse files
committed
reformat
1 parent 009403a commit 0ac7514

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/option/src/map-or-else.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { purry } from "remeda"
2-
import type { Thunk, UnaryFn } from "./types.js"
32
import type { Option } from "./option.js"
43
import { isSome, some } from "./option.js"
4+
import type { Thunk, UnaryFn } from "./types.js"
55
import { unwrap } from "./unwrap.js"
66

77
export function mapOrElse<T, U>(

packages/option/src/map-or.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { purry } from "remeda"
2-
import type { UnaryFn } from "./types.js"
32
import type { Option } from "./option.js"
43
import { isSome, some } from "./option.js"
4+
import type { UnaryFn } from "./types.js"
55
import { unwrap } from "./unwrap.js"
66

77
export function mapOr<T, U>(

packages/option/src/map.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { purry } from "remeda"
2-
import type { UnaryFn } from "./types.js"
32
import type { Option } from "./option.js"
43
import { isSome, some } from "./option.js"
4+
import type { UnaryFn } from "./types.js"
55
import { unwrap } from "./unwrap.js"
66

77
export function map<T, U>(f: UnaryFn<T, U>): (opt: Option<T>) => Option<U>

0 commit comments

Comments
 (0)