Skip to main content
Module

x/rambda/rambda.js>startsWith

Faster and smaller alternative to Ramda
Latest
function startsWith
import { startsWith } from "https://deno.land/x/rambda@v9.2.0/rambda.js";

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: T[]
input: T[]

Returns

boolean

Parameters

question: T[]

Returns

(input: T[]) => boolean