UNPKG

@openshift-console/dynamic-plugin-sdk

Version:

Provides core APIs, types and utilities used by dynamic plugins at runtime.

6 lines (5 loc) 218 B
import { ALL_NAMESPACES_KEY } from '../constants'; /** * Returns true if the provided value represents the special "all" namespaces option key. */ export const isAllNamespacesKey = (ns) => ns === ALL_NAMESPACES_KEY;