Skip to main content
Module

x/lodash_es/mod.ts>toUpper

lodash for deno use
Latest
function toUpper
import { toUpper } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

Converts string, as a whole, to upper case just like String#toUpperCase.

Examples

_.toUpper('--foo-bar--'); // => '--FOO-BAR--'

_.toUpper('fooBar'); // => 'FOOBAR'

_.toUpper('foo_bar'); // => 'FOO_BAR'