Files
wechatpay-enterprise-web/node_modules/es6-templates/test/examples/nested-interpolation.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

6 lines
84 B
JavaScript

/* jshint esnext:true */
assert.strictEqual(
`a${1}b${`${1+1}c`}3`,
'a1b2c3'
);