mirror of
https://github.com/strapi/strapi.git
synced 2025-07-21 07:57:45 +00:00
18 lines
190 B
JavaScript
18 lines
190 B
JavaScript
'use strict';
|
|
|
|
class Field {
|
|
constructor(config) {
|
|
this.config = config;
|
|
}
|
|
|
|
toDB(value) {
|
|
return value;
|
|
}
|
|
|
|
fromDB(value) {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
module.exports = Field;
|