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

package.dist.util.getDesigntimePropertyAsArray.js Maven / Gradle / Ivy

const designTimePropertyAsArray = (value) => {
    const m = /\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(value);
    return m && m[2] ? m[2].split(/,/) : null;
};
export default designTimePropertyAsArray;
//# sourceMappingURL=getDesigntimePropertyAsArray.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy