UNPKG

graphiql-code-exporter

Version:

Export working code snippets from GraphiQL queries

11 lines (10 loc) 254 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = commentFactory; function commentFactory(commentsEnabled, comments) { return function (id) { return commentsEnabled ? '// ' + comments[id] : ''; }; }