mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
|
/// <reference types="npm:@types/node" />
|
||
|
exports.multiply = function (a: number, b: number): number {
|
||
|
return require("./divide.cts").divide(a, 1 / b);
|
||
|
};
|