mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
describe('json', function() {
|
|
|
|
it('angular parser', function() {
|
|
perf(
|
|
function angular() {
|
|
fromJson(largeJsonString);
|
|
},
|
|
function nativeDelegate() {
|
|
fromJson(largeJsonString, true);
|
|
},
|
|
function nativeJSON() {
|
|
JSON.parse(largeJsonString);
|
|
}
|
|
);
|
|
});
|
|
});
|