Files
meteor/packages/json/json_native.js
David Glasser e712d78cfb Export JSON from json package.
Make sure to use the built-in JSON if it exists.

Fixes #1204.
2013-08-02 11:19:08 -07:00

4 lines
113 B
JavaScript

// Do we already have a global JSON object? Export it as our JSON object.
if (window.JSON)
JSON = window.JSON;