export function test()

in spec/frontend/html_string_serializer.js [6:9]


export function test(received) {
  // TODO, maybe there's a better way to determine if a string is intended to be HTML
  return received && typeof received === 'string' && received.startsWith('<');
}