UNPKG

graphiql-code-exporter

Version:

Export working code snippets from GraphiQL queries

5 lines 155 B
export default function commentFactory(commentsEnabled, comments) { return function (id) { return commentsEnabled ? '// ' + comments[id] : ''; }; }