UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

4 lines (3 loc) 133 B
/** Capitalizes the first letter of string */ export const capitalize = (s) => (s && s[0].toLocaleUpperCase() + s.slice(1)) || "";