Lines Matching refs:thresholds
11356 var thresholds = {
11379 var a = seconds <= thresholds.ss && ['s', seconds] ||
11380 seconds < thresholds.s && ['ss', seconds] ||
11382 minutes < thresholds.m && ['mm', minutes] ||
11384 hours < thresholds.h && ['hh', hours] ||
11386 days < thresholds.d && ['dd', days] ||
11388 months < thresholds.M && ['MM', months] ||
11411 if (thresholds[threshold] === undefined) {
11415 return thresholds[threshold];
11417 thresholds[threshold] = limit;
11419 thresholds.ss = limit - 1;