diff --git a/GmailUtils.gs b/GmailUtils.gs index 9f8aaa9..52cc2d5 100644 --- a/GmailUtils.gs +++ b/GmailUtils.gs @@ -473,11 +473,11 @@ function formatEmails_(emails) { * with toString. * * @param {Object} obj - * @param {string} class + * @param {string} classname * @return {boolean} */ -function isa_(obj, class) { - return typeof obj == 'object' && typeof obj.constructor == 'undefined' && obj.toString() == class; +function isa_(obj, classname) { + return typeof obj == 'object' && typeof obj.constructor == 'undefined' && obj.toString() == classname; } /**