UNPKG

@automattic/calypso-products

Version:

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

16 lines (14 loc) 385 B
import { PRODUCT_JETPACK_STATS_YEARLY, PRODUCT_JETPACK_STATS_MONTHLY, PRODUCT_JETPACK_STATS_BI_YEARLY, } from './constants'; export function isJetpackStatsPaidTieredProductSlug( productSlug: string ) { return ( [ PRODUCT_JETPACK_STATS_BI_YEARLY, PRODUCT_JETPACK_STATS_YEARLY, PRODUCT_JETPACK_STATS_MONTHLY, ] as ReadonlyArray< string > ).includes( productSlug ); }