forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplacer.js
More file actions
30 lines (27 loc) · 904 Bytes
/
replacer.js
File metadata and controls
30 lines (27 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { factory } from '../utils/factory.js'
const name = 'replacer'
const dependencies = []
export const createReplacer = /* #__PURE__ */ factory(name, dependencies, () => {
/**
* Stringify data types into their JSON representation.
* Most data types can be serialized using their `.toJSON` method,
* but not all, for example the number `Infinity`. For these cases you have
* to use the replacer. Example usage:
*
* JSON.stringify([2, Infinity], math.replacer)
*
* @param {string} key
* @param {*} value
* @returns {*} Returns the replaced object
*/
return function replacer (key, value) {
// the numeric values Infinitiy, -Infinity, and NaN cannot be serialized to JSON
if (typeof value === 'number' && (!isFinite(value) || isNaN(value))) {
return {
mathjs: 'number',
value: String(value)
}
}
return value
}
})