7 lines
105 B
JavaScript
7 lines
105 B
JavaScript
|
const ReadDirection = {
|
||
|
Forward: 'forward',
|
||
|
Backward: 'backward'
|
||
|
};
|
||
|
|
||
|
module.exports = ReadDirection;
|