Plato on Github
Report Home
request/lib/copy.js
Maintainability
82.94
Lines of code
10
Difficulty
5.73
Estimated Errors
0.05
Function weight
By Complexity
By SLOC
'use strict' module.exports = function copy (obj) { var o = {} Object.keys(obj).forEach(function (i) { o[i] = obj[i] }) return o }