Allow placeholder images for products and line items without images

This commit is contained in:
tniezg
2021-08-25 11:34:22 +02:00
parent 448100290d
commit be0e246699
5 changed files with 49 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
const validatePlaceholderImageUrl = (
placeholderUrlOrFalse: unknown
): string | false => {
if (!placeholderUrlOrFalse || placeholderUrlOrFalse === 'false') {
return false
}
if (typeof placeholderUrlOrFalse === 'string') {
return placeholderUrlOrFalse
}
throw new TypeError('placeholderUrlOrFalse must be a string or falsy.')
}
export default validatePlaceholderImageUrl