UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

10 lines (7 loc) 287 B
import { deburr } from './deburr.mjs'; import { upperCase as upperCase$1 } from '../../string/upperCase.mjs'; import { normalizeForCase } from '../_internal/normalizeForCase.mjs'; function upperCase(str) { return upperCase$1(normalizeForCase(deburr(str))); } export { upperCase };