Buckets:
| export function initRange(domain, range) { | |
| switch (arguments.length) { | |
| case 0: break; | |
| case 1: this.range(domain); break; | |
| default: this.range(range).domain(domain); break; | |
| } | |
| return this; | |
| } | |
| export function initInterpolator(domain, interpolator) { | |
| switch (arguments.length) { | |
| case 0: break; | |
| case 1: { | |
| if (typeof domain === "function") this.interpolator(domain); | |
| else this.range(domain); | |
| break; | |
| } | |
| default: { | |
| this.domain(domain); | |
| if (typeof interpolator === "function") this.interpolator(interpolator); | |
| else this.range(interpolator); | |
| break; | |
| } | |
| } | |
| return this; | |
| } | |
Xet Storage Details
- Size:
- 642 Bytes
- Xet hash:
- b97f254e76d0d67cfb9ba4e88d8955c51562e707376246aac974c0a80f77846a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.