(dataset, timezone = "")
| 771 | } |
| 772 | |
| 773 | buildDatasetVersion(dataset, timezone = "") { |
| 774 | return this.hash({ |
| 775 | timezone, |
| 776 | dataset: dataset && typeof dataset.toJSON === "function" ? dataset.toJSON() : dataset, |
| 777 | }); |
| 778 | } |
| 779 | |
| 780 | runSingleFlight(key, factory) { |
| 781 | if (this.inFlight.has(key)) { |