mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
appease jshint
This commit is contained in:
parent
8ec887e9cf
commit
65014a03ca
1 changed files with 2 additions and 2 deletions
|
@ -24,10 +24,10 @@ Discourse.Formatter = (function(){
|
|||
var args = Array.prototype.slice.call(arguments),
|
||||
hash = "",
|
||||
i = args.length;
|
||||
currentArg = null;
|
||||
var currentArg = null;
|
||||
while (i--) {
|
||||
currentArg = args[i];
|
||||
hash += (currentArg === Object(currentArg)) ?
|
||||
hash += (currentArg === new Object(currentArg)) ?
|
||||
JSON.stringify(currentArg) : currentArg;
|
||||
if(!fn.memoize) {
|
||||
fn.memoize = {};
|
||||
|
|
Loading…
Reference in a new issue