Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/deps/types.ts>Trim

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
type alias Trim
import { type Trim } from "https://deno.land/x/actionify@0.3.0/src/deps/types.ts";

Remove leading and trailing spaces from a string.

Examples

Example 1

import type {Trim} from 'type-fest';

Trim<' foo '>
//=> 'foo'

Type Parameters

V extends string
definition: TrimLeft<TrimRight<V>>