Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.export function multiply(a: number, b: number): number { return a * b;}
export function square( multiplyFn: (a: number, b: number) => number, value: number,): number { return multiplyFn(value, value);}