BeameryHQ/Ditto

View on GitHub
ditto/mappers/premap.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @function preMap
 *
 * @description Start the pre-mapping process which runs before the main mapping process
 * @param {Object} document the object document we want to map
 * @param {Object} result the object representing the result file
 */
async function preMap(document) {
    return document
}

module.exports = preMap;