chore: v2.6.7
[poolifier.git] / src / worker / worker-options.ts
index 90aea1efc04e9c2d5015b910909831bc4b71f4af..75d3dd5b98bf1d8e633d3b58c0190cd3c1f20f93 100644 (file)
@@ -17,21 +17,6 @@ export const KillBehaviors = Object.freeze({
  */
 export type KillBehavior = keyof typeof KillBehaviors
 
-/**
- * Detects whether the given value is a kill behavior or not.
- *
- * @typeParam KB - Which specific KillBehavior type to test against.
- * @param killBehavior - Which kind of kill behavior to detect.
- * @param value - Any value.
- * @returns `true` if `value` was strictly equals to `killBehavior`, otherwise `false`.
- */
-export const isKillBehavior = <KB extends KillBehavior>(
-  killBehavior: KB,
-  value: unknown
-): value is KB => {
-  return value === killBehavior
-}
-
 /**
  * Options for workers.
  */