Area restrita - Questionario

This commit is contained in:
2026-06-08 23:50:59 -03:00
parent f2e2400637
commit ef968f10ae
6972 changed files with 23454 additions and 2267883 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
var baseAssignValue = require('./_baseAssignValue');
/**
* The inverse of `_.toPairs`; this method returns an object composed
* from key-value `pairs`.
@@ -22,7 +20,7 @@ function fromPairs(pairs) {
while (++index < length) {
var pair = pairs[index];
baseAssignValue(result, pair[0], pair[1]);
result[pair[0]] = pair[1];
}
return result;
}