mirror of
https://github.com/strapi/strapi.git
synced 2025-08-15 04:08:04 +00:00
10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const _ = require('lodash');
|
||
|
|
||
|
const pickSchemaFields = model => _.pick(model, []);
|
||
|
|
||
|
module.exports = {
|
||
|
pickSchemaFields,
|
||
|
};
|