Skip to main content
Module

x/polkadot/util/noop.ts

Package publishing for deno.land/x/polkadot
Go to Latest
File

/** * A sharable identity function. Returns the input as-is with no transformation applied. */export function identity <T> (value: T): T { return value;}
/** * A sharable noop function. As the name suggests, does nothing */export function noop (): void { // noop}