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

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

// Note: disabled is present in IE so we explicitly allow it here.
// Others, such as title/hidden, we explicitly override, so valid too
const allowList = [
    "disabled",
    "title",
    "hidden",
    "role",
    "draggable",
];
/**
 * Checks whether a property name is valid (does not collide with existing DOM API properties)
 *
 * @param name
 * @returns {boolean}
 */
const isValidPropertyName = (name) => {
    if (allowList.includes(name) || name.startsWith("aria")) {
        return true;
    }
    const classes = [
        HTMLElement,
        Element,
        Node,
    ];
    return !classes.some(klass => klass.prototype.hasOwnProperty(name)); // eslint-disable-line
};
export default isValidPropertyName;
//# sourceMappingURL=isValidPropertyName.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy