lossless-json
Version:
Parse JSON without risk of losing numeric information
9 lines • 472 B
JavaScript
/**
* Get and/or set configuration options
* @deprecated There is no config anymore
*/
export function config(_options) {
// Backward compatibility warning for v1.x
throw new Error('config is deprecated, support for circularRefs is removed from the library. ' + 'If you encounter circular references in your data structures, ' + 'please rethink your datastructures: ' + 'better prevent circular references in the first place.');
}
//# sourceMappingURL=config.js.map