Skip to main content
Module

std/testing/mock.ts>returnsThis

Deno standard library
Go to Latest
function returnsThis
import { returnsThis } from "https://deno.land/std@0.145.0/testing/mock.ts";

Creates a function that returns the instance the method was called on.

Type Parameters

optional
Self = any
optional
Args extends unknown[] = any[]

Returns

(this: Self, ...args: Args) => Self