UNPKG

@cityssm/mpac-yetf

Version:

Parses the MPAC Year-End Tax File (YETF) into a usable object.

16 lines (15 loc) 799 B
import * as ggLookups from '../lookups/ggLookups.js'; export function formatGG(recordGG) { const formattedYetfRecordGG = recordGG; formattedYetfRecordGG.identifierName = ggLookups.identifierNames[formattedYetfRecordGG.identifier]; formattedYetfRecordGG.occupancyStatusName = ggLookups.occupancyStatusNames[formattedYetfRecordGG.occupancyStatus]; formattedYetfRecordGG.schoolSupportName = ggLookups.schoolSupportNames[formattedYetfRecordGG.schoolSupport]; formattedYetfRecordGG.residencyCodeDescription = ggLookups.residencyCodeDescriptions[formattedYetfRecordGG.residencyCode]; formattedYetfRecordGG.monthOfBirthName = ggLookups.monthOfBirthNames[formattedYetfRecordGG.monthOfBirth]; return formattedYetfRecordGG; }