File size: 256 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { ProductListItem } from 'calypso/state/products-list/selectors/get-products-list';
const hasIntroductoryOffer = ( product: ProductListItem | null ) => {
return Boolean( product?.introductory_offer ?? false );
};
export { hasIntroductoryOffer };
|