Selaa lähdekoodia

Merge e827c5572b into 972fd2b27a

pull/795/merge
Vaspar GitHub 3 vuotta sitten
vanhempi
commit
0e6ef2072f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 muutettua tiedostoa jossa 10420 lisäystä ja 47 poistoa
  1. +4
    -1
      mustache.js
  2. +10416
    -46
      package-lock.json

+ 4
- 1
mustache.js Näytä tiedosto

@@ -396,7 +396,10 @@ Context.prototype.lookup = function lookup (name) {
var value;
if (cache.hasOwnProperty(name)) {
value = cache[name];
} else {
} else if (name.includes('.') && cache['.'] && cache['.'].hasOwnProperty(name)) {
value = cache['.'][name];
}
else {
var context = this, intermediateValue, names, index, lookupHit = false;

while (context) {


+ 10416
- 46
package-lock.json
File diff suppressed because it is too large
Näytä tiedosto


Loading…
Peruuta
Tallenna