Ver código fonte

Merge e827c5572b into 972fd2b27a

pull/795/merge
Vaspar GitHub 3 anos atrás
pai
commit
0e6ef2072f
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
2 arquivos alterados com 10420 adições e 47 exclusões
  1. +4
    -1
      mustache.js
  2. +10416
    -46
      package-lock.json

+ 4
- 1
mustache.js Ver arquivo

@@ -396,7 +396,10 @@ Context.prototype.lookup = function lookup (name) {
var value; var value;
if (cache.hasOwnProperty(name)) { if (cache.hasOwnProperty(name)) {
value = cache[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; var context = this, intermediateValue, names, index, lookupHit = false;


while (context) { while (context) {


+ 10416
- 46
package-lock.json
Diferenças do arquivo suprimidas por serem muito extensas
Ver arquivo


Carregando…
Cancelar
Salvar