Files
shop-server/server/src/lib/delivery-carrier.js
T
2026-05-13 22:07:46 +05:00

10 lines
290 B
JavaScript

export { DELIVERY_CARRIERS } from '../../../shared/constants/delivery-carrier.js'
/**
* @param {unknown} value
* @returns {value is typeof DELIVERY_CARRIERS[number]}
*/
export function isDeliveryCarrier(value) {
return typeof value === 'string' && DELIVERY_CARRIERS.includes(value)
}