Got tests running on single property character
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import applyFnToKey from '../utility/applyFnToKey.js';
|
||||
import { unset } from 'lodash';
|
||||
|
||||
export default function removeSchemaFields(schemas, prop){
|
||||
schemas.forEach(schema => {
|
||||
schema._schemaKeys.forEach(key => {
|
||||
// Skip object keys
|
||||
if (schema.getQuickTypeForKey(key) === 'object') return;
|
||||
// Unset other computed only keys
|
||||
applyFnToKey(prop, key, unset)
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user