UNPKG
wander-pretty
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A tool help to quickly use prettier & eslint on an old project.
wander-pretty
/
lib
/
fromEntries.js
9 lines
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
= {
objectFromEntries
(
entries
) {
const
o = {};
for
(
const
[key, value]
of
entries) { o[key] = value; }
return
o; } }