Home | History | Annotate | Download | only in lib

Lines Matching defs:stringify

176         typeof JSON.stringify === 'function' &&
177 JSON.stringify(0) === '0' &&
178 typeof JSON.stringify(Prototype.K) === 'undefined';
273 function stringify(object) {
274 return JSON.stringify(object);
349 toJSON: NATIVE_JSON_STRINGIFY_SUPPORT ? stringify : toJSON,