Moment.now constructor

Moment.now()

Creates a Moment based on current system time in the local time zone.

Uses DateTime.now() internally.

Implementation

Moment.now() {
  _date = _now();
}