martijnversluis/ChordSheetJS

View on GitHub
test/cloneable_stub.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default class CloneableStub {
  value: any;

  constructor(value: any) {
    this.value = value;
  }

  clone() {
    return new CloneableStub(this.value);
  }
}