UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

11 lines 400 B
module.exports = function (entityDescriptionService) { return { extractEntityCrudId: function (req) { if (req.query.entityCrudId) { return JSON.parse(req.query.entityCrudId); } else if (req.params.entityTypeId) { return entityDescriptionService.entityTypeIdCrudId(req.params.entityTypeId); } } } };