UNPKG

graphiql-code-exporter

Version:

Export working code snippets from GraphiQL queries

4 lines (3 loc) 132 B
export default function commentFactory(commentsEnabled, comments) { return id => (commentsEnabled ? '// ' + comments[id] : ''); }