safeJsonStringify
safeJsonStringify<T
>(value
, options?
): { data
: string
; error
: null
} | { data
: null
; error
: TypeError
}
JSON.stringify()で発生する例外をキャッチして、例外が発生した場合はエラーオブジェクトを返す
Example
const { data, error } = safeJsonStringify({ foo: "bar" }); // => { data: '{"foo":"bar"}', error: null }
if (error) {
console.error(error);
} else {
console.log(data); // => '{"foo":"bar"}'
}
Parameters
Name | Type |
---|---|
value | T |
options? | Object |
options.replacer? | ※1 |
options.space? | ※2 |
- ※1 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#replacer に従う
- ※2 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#space に従う
Returns
{ data
: T
; error
: null
} | { data
: null
; error
: SyntaxError
}