Skip to main content
Module

x/fun/string.ts>toUpperCase

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
function toUpperCase
import { toUpperCase } from "https://deno.land/x/fun@v2.0.0-alpha.10/string.ts";

A pipeable form of String.toUpperCase.

Examples

Example 1

import { toUpperCase } from "./string.ts";

const result = toUpperCase("hello"); // "HELLO"

Parameters

a: string

Returns

string