зеркало из https://github.com/mozilla/gecko-dev.git
Bug 977013 - TelemetryTimestamps.jsm should use Cu.cloneInto() rather than JSON.stringify/parse r=yoric
This commit is contained in:
Родитель
892be8eafd
Коммит
1038706063
|
@ -46,7 +46,7 @@ this.TelemetryTimestamps = {
|
|||
* to attach to the telemetry submission.
|
||||
*/
|
||||
get: function TT_get() {
|
||||
// Return a copy of the object by passing it through JSON.
|
||||
return JSON.parse(JSON.stringify(timeStamps));
|
||||
// Return a copy of the object.
|
||||
return Cu.cloneInto(timeStamps, {});
|
||||
}
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче