All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.style-spec.validate.validate_image.js Maven / Gradle / Ivy

The newest version!
// @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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy