UNPKG

snappy-utils

Version:

A lightweight and efficient JavaScript utility library packed with commonly used helper functions like capitalize, debounce, deepClone, flattenArray, isPrime, and more. Ideal for developers who want a simple yet powerful toolkit to streamline everyday cod

8 lines (7 loc) 208 B
function capitalize(str) { if (typeof str !== 'string') { throw new TypeError('Expected a string'); } return str.charAt(0).toUpperCase() + str.slice(1); } module.exports = capitalize;