Public
Script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export type Fmt = "CL" | "Oz" | "Ml";
export class BaseUnit {
amount: number;
name: string;
plural?: string;
constructor(amount: number) {
this.amount = amount;
this.name = "BaseUnit";
}
format(_unit: Fmt) {
throw new Error("unimplemented");
}
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
November 16, 2023