(projection, geojson, group)
| 143054 | return gradient; |
| 143055 | } |
| 143056 | function geoShape(projection, geojson, group) { |
| 143057 | const p = getScale(projection, (group || this).context); |
| 143058 | return function(context) { |
| 143059 | return p ? p.path.context(context)(geojson) : ""; |
| 143060 | }; |
| 143061 | } |
| 143062 | function pathShape(path) { |
| 143063 | let p = null; |
| 143064 | return function(context) { |
nothing calls this directly
no test coverage detected