proton-engine
Version:
Proton is a simple and powerful javascript particle animation engine.
30 lines (26 loc) • 584 B
JavaScript
export default {
/**
* Determine whether it is a picture object
*
* @return {boolean} is or no
*/
isImage(obj) {
if (!obj) return false;
if (obj.__isImage) return true;
const tagName = `${obj.tagName}`.toUpperCase();
const nodeName = `${obj.nodeName}`.toUpperCase();
if (nodeName === "IMG" || tagName === "IMG") {
obj.__isImage = true;
return true;
}
return false;
},
/**
* Determine whether it is a string object
*
* @return {boolean} is or no
*/
isString(obj) {
return typeof obj === "string";
}
};