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 dedentBlockStringValue(str) { 6 return str; 7} 8 9export function getBlockStringIndentation(str) { 10 return 0; 11}