@4geit/swg-destructuring-parameters-helper
v1.31.0
Published
destructure endpoint function parameters
Keywords
Readme
@4geit/swg-destructuring-parameters-helper 
destructure endpoint function parameters
Installation
- A recommended way to install @4geit/swg-destructuring-parameters-helper is through npm package manager using the following command:
npm i @4geit/swg-destructuring-parameters-helper --saveOr use yarn using the following command:
yarn add @4geit/swg-destructuring-parameters-helper- All you have to do is to import the
@4geit/swg-destructuring-parameters-helperpackage in your controller or mock file as below:
// ...
const swgDestructuringParametersHelper = require('@4geit/swg-destructuring-parameters-helper')
// ...And use it with one of your endpoint controller as below:
// ...
module.exports = {
// ...
getItems: swgDestructuringParametersHelper(
({ req, res }) => {
// ...
}
),
// ...
}