I realize, this question is repeated but previous once does not provide apt answer moment package was already installed
1.Installed package
Install moment-timezone on your command line:
npm i -S moment-timezone
Import moment-timezone in your component:
import * as moment from 'moment-timezone';
Use it according to docs:
this.time = moment().tz('America/New_York').format('HH:mm:ss z')
16:20:42 EDT
moment docs
moment timezone docs
note:
momentwas intentionally not installed or imported as it is a dependency ofmoment-timezone.