Module

x/rambda/immutable.d.ts>startsWith

Faster and smaller alternative to Ramda
Go to Latest
function startsWith
import { startsWith } from "https://dotland.deno.dev/x/rambda@v9.2.0/immutable.d.ts";

When iterable is a string, then it behaves as String.prototype.startsWith. When iterable is a list, then it uses R.equals to determine if the target list starts in the same way as the given target.

Type Parameters

T extends string

Parameters

question: T
input: string

Returns

boolean

Type Parameters

T extends string

Parameters

question: T

Returns

(input: string) => boolean

Parameters

question: readonly T[]
input: readonly T[]

Returns

boolean

Parameters

question: readonly T[]

Returns

(input: readonly T[]) => boolean