mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 06:02:09 +00:00
move dateRange from constants to utils
This commit is contained in:
parent
5ff3147124
commit
aa761cf7ad
@ -10,22 +10,9 @@ const orderOperations = {
|
|||||||
download: 'DOWNLOAD',
|
download: 'DOWNLOAD',
|
||||||
};
|
};
|
||||||
|
|
||||||
const dateRange = (start, end) => {
|
|
||||||
if (start && end)
|
|
||||||
return {
|
|
||||||
DateRange: {
|
|
||||||
Start: start,
|
|
||||||
End: end,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
return {};
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name,
|
name,
|
||||||
version,
|
version,
|
||||||
orderOperations,
|
orderOperations,
|
||||||
productString: `${name} ${version}`,
|
productString: `${name} ${version}`,
|
||||||
dateRange,
|
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const utils = require('../consts');
|
const utils = require('../utils');
|
||||||
|
|
||||||
module.exports = (start = null, end = null) => ({
|
module.exports = (start = null, end = null) => ({
|
||||||
version: 'h004',
|
version: 'h004',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const utils = require('../consts');
|
const utils = require('../utils');
|
||||||
|
|
||||||
module.exports = (start = null, end = null) => ({
|
module.exports = (start = null, end = null) => ({
|
||||||
version: 'h004',
|
version: 'h004',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const utils = require('../consts');
|
const utils = require('../utils');
|
||||||
|
|
||||||
module.exports = (start = null, end = null) => ({
|
module.exports = (start = null, end = null) => ({
|
||||||
version: 'h004',
|
version: 'h004',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const utils = require('../consts');
|
const utils = require('../utils');
|
||||||
|
|
||||||
module.exports = (start = null, end = null) => ({
|
module.exports = (start = null, end = null) => ({
|
||||||
version: 'h004',
|
version: 'h004',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const utils = require('../consts');
|
const utils = require('../utils');
|
||||||
|
|
||||||
module.exports = (start = null, end = null) => ({
|
module.exports = (start = null, end = null) => ({
|
||||||
version: 'h004',
|
version: 'h004',
|
||||||
|
18
lib/utils.js
Normal file
18
lib/utils.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const dateRange = (start, end) => {
|
||||||
|
if (start && end)
|
||||||
|
return {
|
||||||
|
DateRange: {
|
||||||
|
Start: start,
|
||||||
|
End: end,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return {};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
dateRange,
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user