mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
14 lines
295 B
JavaScript
14 lines
295 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const H004Serializer = require('../orders/H004/serializer');
|
||
|
|
||
|
module.exports = {
|
||
|
use(order) {
|
||
|
const { version } = order;
|
||
|
|
||
|
if (version.toUpperCase() === 'H004') return H004Serializer.use(order);
|
||
|
|
||
|
throw Error('Error middleware/serializer.js: Invalid version number');
|
||
|
},
|
||
|
};
|