UNPKG

linear-gradient-parser

Version:

Parses a SVG linear gradient string / parsed JSON into css background image property

11 lines (9 loc) 213 B
/** * Determines if undefined or null * @param {?} value - The value to check * @returns {Boolean} */ const defined = (value) => { return value !== undefined && value !== null; }; export default defined;