alekzonder/maf

View on GitHub
src/Rest/helpers/filters.js

Summary

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

module.exports = {

    get: function (obj, names) {
        return _.pick(obj, names);
    }

};