Lines Matching refs:thresholds
4282 var thresholds = {
4305 var a = seconds <= thresholds.ss && ['s', seconds] ||
4306 seconds < thresholds.s && ['ss', seconds] ||
4308 minutes < thresholds.m && ['mm', minutes] ||
4310 hours < thresholds.h && ['hh', hours] ||
4312 days < thresholds.d && ['dd', days] ||
4314 months < thresholds.M && ['MM', months] ||
4337 if (thresholds[threshold] === undefined) {
4341 return thresholds[threshold];
4343 thresholds[threshold] = limit;
4345 thresholds.ss = limit - 1;