UEA-PRODEM

This commit is contained in:
2026-06-10 12:14:46 -03:00
parent f54126b9d8
commit 9947565694
5319 changed files with 148520 additions and 129332 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
var baseAssignValue = require('./_baseAssignValue');
/**
* The inverse of `_.toPairs`; this method returns an object composed
* from key-value `pairs`.
@@ -20,7 +22,7 @@ function fromPairs(pairs) {
while (++index < length) {
var pair = pairs[index];
result[pair[0]] = pair[1];
baseAssignValue(result, pair[0], pair[1]);
}
return result;
}