Feature request: add option to prevent parsing of data
Created by: pahuta
Issue type: Enhancements, Feature request
The JSON.parse()
method accepts an optional the second param - reviver function, that can be used to perform a transformation on the resulting object before it is returned (MDN).
Will be nice to have possibility to use my own reviver function during parsing data of job. For example, it'll be useful when we use Date in data of job and would like to parse it exactly to JS Date, not to string.