TypeScript/tests/baselines/reference/templateStringWithEmbeddedModuloES6.js

6 lines
152 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedModuloES6.ts]
var x = `abc${ 1 % 1 }def`;
//// [templateStringWithEmbeddedModuloES6.js]
var x = `abc${1 % 1}def`;