Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit e77062d

Browse files
author
exoego
committed
Fix format
1 parent 45a8dd5 commit e77062d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/scala/io/scalajs/nodejs/internal/CompilerSwitches.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ object CompilerSwitches {
1111
predicate(major.toInt, minor.toInt, patch.toInt)
1212
}
1313

14-
final val isNodeJs8 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major == 8))
15-
final val gteNodeJs8 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major >= 8))
14+
final val isNodeJs8 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major == 8))
15+
final val gteNodeJs8 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major >= 8))
1616

1717
final val isNodeJs10 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major == 10))
1818
final val gteNodeJs10 = (c: whitebox.Context) => c.settings.exists(compare((major, _, _) => major >= 10))

0 commit comments

Comments
 (0)