UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

16 lines 509 B
import { RedisServerUnsupportedPlatformError } from './errors/index.js'; export const REDIS_SERVER_PLATFORM_LIST = [ 'darwin', 'linux', ]; function isSupportedPlatform(platform) { return REDIS_SERVER_PLATFORM_LIST.includes(platform); } export const getSupportedPlatform = () => { const platform = process.platform; if (isSupportedPlatform(platform)) { return platform; } throw new RedisServerUnsupportedPlatformError(); }; //# sourceMappingURL=get-supported-platform.js.map