summaryrefslogtreecommitdiff
path: root/tests/specs/publish/package_json/mod.ts
blob: ae98962fa28416281a94755235394f73c13a4321 (plain)
1
2
3
4
5
6
7
8
9
import pc from "picocolors";

export function add(a: number, b: number): number {
  return a + b;
}

export function getValue(): string {
  return pc.green("hey");
}