/** * Maps a built-in field (e.g. name) to a specific path */ function map (field, path) { Eif (path) { this.mappings[field] = path; } return this.mappings[field]; } module.exports = map;