Date Formatting-isostring

Benchmark created by Fotios Lindiakos on


Description

Compare moment.js and native isoString functions

Preparation HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.min.js"></script>

Setup

var moment_obj = moment();
    var date = new Date();

Test runner

Ready to run.

Testing in
TestOps/sec
Moment ISO
moment_obj.toISOString();
ready
Moment to Native
moment_obj.toDate().toISOString();
ready
Native
date.toISOString();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by Fotios Lindiakos on