valor-software/ng2-bootstrap

View on GitHub
src/datepicker/date-formatter.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { formatDate } from '../chronos/format';

export class DateFormatter {
  format(date: Date, format: string, locale: string): string {
    return formatDate(date, format, locale);
  }
}