UNPKG

@glidejs/glide

Version:

Glide.js is a dependency-free JavaScript ES6 slider and carousel. It’s lightweight, flexible and fast. Designed to slide. No less, no more

10 lines (9 loc) 200 B
/** * Makes a string's first character uppercase. * * @param {String} string * @return {String} */ export function ucfirst (string) { return string.charAt(0).toUpperCase() + string.slice(1) }