define(['docElement'], function(docElement) {
/**
* A convenience helper to check if the document we are running in is an SVG document
*
* @accessprivate
* @returns {boolean}
*/var isSVG = docElement.nodeName.toLowerCase() === 'svg';
return isSVG;
});