Spaces:
Sleeping
Sleeping
File size: 284 Bytes
b593f0b | 1 2 3 4 5 6 7 8 9 10 11 12 | // @flow
import validateExpression from './validate_expression';
import validateString from './validate_string';
export default function validateImage(options: any) {
if (validateString(options).length === 0) {
return [];
}
return validateExpression(options);
}
|