fix: unused function

This commit is contained in:
Jin Yi
2025-09-08 21:59:02 +09:00
parent 63ab1dcbbe
commit a7db5bdd64

View File

@@ -1,4 +1,4 @@
import { groupBy, isEmpty, isNil, uniqBy } from 'es-toolkit/compat'
import { groupBy, uniqBy } from 'es-toolkit/compat'
import type {
ConflictDetail,
@@ -8,15 +8,6 @@ import type {
} from '@/types/conflictDetectionTypes'
import { normalizePackId } from '@/utils/packUtils'
/**
* Helper function to check if a value indicates "compatible with all"
* @param value Value to check
* @returns True if compatible with all
*/
export function isCompatibleWithAll(value: any): boolean {
return isNil(value) || isEmpty(value)
}
/**
* Checks for banned package status conflicts.
*/