UNPKG

@automattic/calypso-products

Version:

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

7 lines (5 loc) 287 B
import { camelOrSnakeSlug } from './camel-or-snake-slug'; import type { WithSnakeCaseSlug, WithCamelCaseSlug } from './types'; export function isConciergeSession( product: WithSnakeCaseSlug | WithCamelCaseSlug ): boolean { return 'concierge-session' === camelOrSnakeSlug( product ); }