UNPKG

@automattic/calypso-products

Version:

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

8 lines (6 loc) 339 B
import { camelOrSnakeSlug } from './camel-or-snake-slug'; import { isJetpackScanSlug } from './is-jetpack-scan-slug'; import type { WithSnakeCaseSlug, WithCamelCaseSlug } from './types'; export function isJetpackScan( product: WithSnakeCaseSlug | WithCamelCaseSlug ): boolean { return isJetpackScanSlug( camelOrSnakeSlug( product ) ); }