File size: 231 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { find, get } from 'lodash';
export function isHstsRequired( productSlug, productsList ) {
const product = find( productsList, [ 'product_slug', productSlug ] ) || {};
return get( product, 'is_hsts_required', false );
}
|