mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-30 17:37:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			290 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			290 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const { map } = require('lodash/fp');
 | |
| 
 | |
| const entityToResponseEntity = (entity) => ({ id: entity.id, attributes: entity });
 | |
| 
 | |
| const entitiesToResponseEntities = map(entityToResponseEntity);
 | |
| 
 | |
| module.exports = () => ({
 | |
|   entityToResponseEntity,
 | |
|   entitiesToResponseEntities,
 | |
| });
 | 
