patrickmichalina/typescript-monads

View on GitHub
src/maybe/maybe.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

Maybe has 28 functions (exceeds 20 allowed). Consider refactoring.
Wontfix

export class Maybe<T> implements IMaybe<T>  {

  constructor(private readonly value?: T | null) { }
  
  public of(value: T): IMaybe<T> {
Severity: Minor
Found in src/maybe/maybe.ts - About 3 hrs to fix

    There are no issues that match your filters.

    Category
    Status