moment function in angularjs code example
Example 1: angular moment
npm install --save moment
...
import * as moment from 'moment';
Example 2: ngx moment
npm install --save moment ngx-moment
...
import { MomentModule } from 'ngx-moment';
@NgModule({
imports: [
MomentModule
]
})