parent
1be7950237
commit
56586125a4
2 changed files with 10 additions and 1 deletions
|
@ -174,7 +174,7 @@ L.Util.greedyTemplate = (str, data, ignore) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return str.replace(
|
return str.replace(
|
||||||
/\{ *([\w_\:\.\|]+)(?:\|("[^"]*"))? *\}/g,
|
/\{ *([\w_\:\.\|@]+)(?:\|("[^"]*"))? *\}/g,
|
||||||
(str, key, staticFallback) => {
|
(str, key, staticFallback) => {
|
||||||
const vars = key.split('|')
|
const vars = key.split('|')
|
||||||
let value
|
let value
|
||||||
|
|
|
@ -236,6 +236,15 @@ describe('L.Util', function () {
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('should accept arobase', function () {
|
||||||
|
assert.equal(
|
||||||
|
L.Util.greedyTemplate('A phrase with a {@variable}.', {
|
||||||
|
'@variable': 'value',
|
||||||
|
}),
|
||||||
|
'A phrase with a value.'
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
it('should replace even with ignore if key is found', function () {
|
it('should replace even with ignore if key is found', function () {
|
||||||
assert.equal(
|
assert.equal(
|
||||||
L.Util.greedyTemplate(
|
L.Util.greedyTemplate(
|
||||||
|
|
Loading…
Reference in a new issue