mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +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;
 | 
