@blamejs/blamejs-shop 0.0.61 → 0.0.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -371,7 +371,13 @@ function _body(s) {
371
371
  return s;
372
372
  }
373
373
 
374
- function _now() { return Date.now(); }
374
+ var _lastTs = 0;
375
+ function _now() {
376
+ var t = Date.now();
377
+ if (t <= _lastTs) { t = _lastTs + 1; }
378
+ _lastTs = t;
379
+ return t;
380
+ }
375
381
 
376
382
  function _isStopKeyword(raw) {
377
383
  if (typeof raw !== "string") return false;