build(deps-dev): apply updates
[poolifier.git] / src / utils.ts
index d15f63c557e813aec9fdeeae7f993be8f8adedc4..f77d84a97e6694d2c22cbdc0dd0a5bb97ab69f89 100644 (file)
@@ -1,5 +1,6 @@
-import * as os from 'node:os'
 import { getRandomValues } from 'node:crypto'
+import * as os from 'node:os'
+
 import type { KillBehavior } from './worker/worker-options.js'
 
 /**
@@ -135,7 +136,7 @@ export const isPlainObject = (value: unknown): value is object =>
  *
  * @typeParam KB - Which specific KillBehavior type to test against.
  * @param killBehavior - Which kind of kill behavior to detect.
- * @param value - Any value.
+ * @param value - Unknown value.
  * @returns `true` if `value` was strictly equals to `killBehavior`, otherwise `false`.
  * @internal
  */