(gradient2, stops)
| 122248 | return value4 == null ? dflt : value4; |
| 122249 | } |
| 122250 | function addStops(gradient2, stops) { |
| 122251 | const n = stops.length; |
| 122252 | for(let i = 0; i < n; ++i)gradient2.addColorStop(stops[i].offset, stops[i].color); |
| 122253 | return gradient2; |
| 122254 | } |
| 122255 | function gradient(context26, spec, bounds2) { |
| 122256 | const w5 = bounds2.width(), h10 = bounds2.height(); |
| 122257 | let gradient3; |