79089143

Date: 2024-10-15 08:51:37
Score: 0.5
Natty:
Report link

One workaround.

namespace _StringMonoid  {
  export function neutral() {
    return ``;
  }

  export function combine(x: string, y: string) {
    return x + y;
  }
}

export const StringMonoid: Monoid<string> = _StringMonoid;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tsz Lam