1.0.2 • Published 6 years ago

ng-timeparser v1.0.2

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

NgTimeparser

npm version Build Status

NgTimeparser is a Angular 5 service that helps you parse any time from a input field to a correct time. It can handle both 12/24 hour formats.

Install

Install from npm

npm i ng-timeparser

Include in NgModule

@NgModule({
  declarations: [
    ...
  ],
  imports: [
    ...
    TimeParserModule
  ]

Usage

You can either use the service directly or use the directive on your input-field.

By Directive

12 hour format

<input type="text" [(ngModel)]="inputTime" timeParser />

24 hour format

<input type="text" [(ngModel)]="inputTime" timeParser militaryTime='true' />

By Service

Include service to component

constructor(private timeParserService: TimeParserService) {}

12 hour format

this.time = this.timeParserService.parseTime(this.time, false);

24 hour format

this.time = this.timeParserService.parseTime(this.time, true);

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Running unit tests

Run ng test to execute the unit tests via Karma.

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.0

6 years ago