UNPKG

@automattic/calypso-products

Version:

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

9 lines 390 B
import { JETPACK_MONTHLY_PLANS, PLAN_MONTHLY_PERIOD, WPCOM_MONTHLY_PLANS } from './constants'; export function isMonthlyProduct(product) { return parseInt(String(product.bill_period), 10) === PLAN_MONTHLY_PERIOD; } export function isMonthly(plan) { return (WPCOM_MONTHLY_PLANS.includes(plan) || JETPACK_MONTHLY_PLANS.includes(plan)); } //# sourceMappingURL=is-monthly.js.map