Codibre/chai-callslike

View on GitHub
src/lib/get-object-description.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { isMatcher } from './is-matcher';

export function getObjectDescription(obj: object) {
  if (isMatcher(obj)) {
    return 'Matcher';
  }
  return obj.constructor.name;
}