Combine displayName using underscore

This commit is contained in:
Thomas Aylott
2014-08-28 14:58:59 -04:00
parent a6116b31e5
commit 755cc9671f
+1 -1
View File
@@ -56,7 +56,7 @@ var ReactPerf = {
}
return func.apply(this, arguments);
};
wrapper.displayName = objName + '.' + fnName;
wrapper.displayName = objName + '_' + fnName;
return wrapper;
}
return func;