Windshaft-cartodb/lib/utils/json-replacer.js
Daniel García Aubert cc24228511 Fix eslint issues
2019-11-06 13:56:59 +01:00

22 lines
531 B
JavaScript

'use strict';
module.exports = function jsonReplacerFactory () {
// Fix: https://github.com/CartoDB/Windshaft-cartodb/issues/705
// See: http://expressjs.com/en/4x/api.html#app.set
return function jsonReplacer (key, value) {
if (value !== value) { // eslint-disable-line no-self-compare
return 'NaN';
}
if (value === Infinity) {
return 'Infinity';
}
if (value === -Infinity) {
return '-Infinity';
}
return value;
};
};