Skip to main content
Module

x/fun/string.ts>combine

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

Combine two strings.

Examples

Example 1

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

const result1 = combine("Hello")("World"); // "WorldHello"

Parameters

second: string

Returns

(first: string) => string