Plato on Github
Report Home
node_modules/es5-ext/object/compact.js
Maintainability
93.52
Lines of code
7
Difficulty
4.90
Estimated Errors
0.03
Function weight
By Complexity
By SLOC
'use strict'; var filter = require('./filter'); module.exports = function (obj) { return filter(obj, function (val) { return val != null; }); };