Returns the string representation of the {value}, i.e.:
import { stringify } from '@amjs/js-utils';console.log(stringify({ key: 'value' })); // '{"key":"value"}' Copy
import { stringify } from '@amjs/js-utils';console.log(stringify({ key: 'value' })); // '{"key":"value"}'
To transform
String representation of {value}
Error If values equals 'null' or 'undefined'
Returns the string representation of the {value}, i.e.: