amcgee/remjs

View on GitHub
lib/actions/helpers/strip-private-properties.js

Summary

Maintainability
A
0 mins
Test Coverage
var _ = require( 'lodash' );

module.exports = function( doc ) {
    return _.omit(doc, function(value, key) {
        return key[0] === '_' && key !== "_id"; // Strip private variables
    });
};