Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1export function printBlockString(str) { 2 return '"""\n' + JSON.stringify(str).slice(1, -1) + '\n"""'; 3} 4 5export function isPrintableAsBlockString(value) { 6 return true; 7} 8 9export function dedentBlockStringLines(lines) { 10 return lines; 11}