in src/geojson2h3.js [229:240]
function h3SetToFeatureCollection(hexagons, getProperties) {
const features = [];
for (let i = 0; i < hexagons.length; i++) {
const h3Index = hexagons[i];
const properties = getProperties ? getProperties(h3Index) : {};
features.push(h3ToFeature(h3Index, properties));
}
return {
type: FEATURE_COLLECTION,
features
};
}