@automattic/calypso-products
Version:
This module contains information about the various products sold within calypso, such as product slugs, plan intervals, etc.
9 lines • 381 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isDotComPlan = isDotComPlan;
const is_jetpack_plan_1 = require("./is-jetpack-plan");
const is_plan_1 = require("./is-plan");
function isDotComPlan(product) {
return (0, is_plan_1.isPlan)(product) && !(0, is_jetpack_plan_1.isJetpackPlan)(product);
}
//# sourceMappingURL=is-dot-com-plan.js.map