10 lines
141 B
JavaScript
Raw Normal View History

2019-07-22 17:08:29 +02:00
'use strict';
const _ = require('lodash');
const pickSchemaFields = model => _.pick(model, []);
module.exports = {
pickSchemaFields,
};