This commit is contained in:
Timo Hocker 2020-05-08 10:03:50 +02:00
parent 7a351b7dab
commit df00690b57

View File

@ -22,7 +22,7 @@ function translate_command (cmd: GraphStreamCommand|''): string {
ce: 'create edge', ce: 'create edge',
'': 'start' '': 'start'
}; };
return translations[cmd]; return `'${translations[cmd]}'`;
} }
export { GraphStreamCommand, translate_command }; export { GraphStreamCommand, translate_command };