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