UNPKG

redis-smq-common

Version:

RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.

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