summaryrefslogtreecommitdiff
path: root/tests/specs/bench/workspace/package-b/mod.ts
blob: 53148ac2f2792794d1a82839b232d33039267f45 (plain)
1
2
3
4
5
import { add } from "@scope/a";

export function addOne(a: number): number {
  return add(a, 1);
}