@@ -1793,7 +1793,7 @@ module.exports = ContentBlock;
17931793 * @return string Renderable space-separated CSS className.
17941794 */
17951795function cx(classNames) {
1796- if (typeof classNames == 'object') {
1796+ if (typeof classNames === 'object') {
17971797 return Object.keys(classNames).filter(function (className) {
17981798 return classNames[className];
17991799 }).map(replace).join(' ');
@@ -11430,7 +11430,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/**
1143011430 // check if given property is actually array
1143111431 if (typeof q === OBJ_TYPE && q.length > 0) {
1143211432 if (q.length == 2) {
11433- if (typeof q[1] == FUNC_TYPE) {
11433+ if (typeof q[1] === FUNC_TYPE) {
1143411434 // assign modified match
1143511435 this[q[0]] = q[1].call(this, match);
1143611436 } else {
@@ -13974,14 +13974,14 @@ function hasArrayNature(obj) {
1397413974 // not null/false
1397513975 !!obj && (
1397613976 // arrays are objects, NodeLists are functions in Safari
13977- typeof obj == 'object' || typeof obj == 'function') &&
13977+ typeof obj === 'object' || typeof obj = == 'function') &&
1397813978 // quacks like an array
1397913979 'length' in obj &&
1398013980 // not window
1398113981 !('setInterval' in obj) &&
1398213982 // no DOM node should be considered an array-like
1398313983 // a 'select' element has 'length' and 'item' properties on IE8
13984- typeof obj.nodeType != 'number' && (
13984+ typeof obj.nodeType !== 'number' && (
1398513985 // a real array
1398613986 Array.isArray(obj) ||
1398713987 // arguments
0 commit comments