UNPKG

@automattic/calypso-products

Version:

This module contains information about the various products sold within calypso, such as product slugs, plan intervals, etc.

10 lines (8 loc) 412 B
import { camelOrSnakeSlug } from './camel-or-snake-slug'; import { isGSuiteOrGoogleWorkspaceProductSlug } from './is-gsuite-or-google-workspace-product-slug'; import type { WithCamelCaseSlug, WithSnakeCaseSlug } from './types'; export function isGSuiteOrGoogleWorkspace( product: WithCamelCaseSlug | WithSnakeCaseSlug ): boolean { return isGSuiteOrGoogleWorkspaceProductSlug( camelOrSnakeSlug( product ) ); }