UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

3 lines 165 B
/** Capitalizes the first letter of string */ export const capitalize = (s) => (s && s[0].toLocaleUpperCase() + s.slice(1)) || ""; //# sourceMappingURL=string.js.map