function removeWhitespace()

in src/extension.ts [169:171]


function removeWhitespace(s: string): string {
  return s.replace(/\s*/g, '');
}