fbredius/storybook

View on GitHub
addons/docs/src/lib/docgen/utils/string.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const str = (obj: any) => {
  if (!obj) {
    return '';
  }
  if (typeof obj === 'string') {
    return obj as string;
  }
  throw new Error(`Description: expected string, got: ${JSON.stringify(obj)}`);
};