nativescript-date-utils

A simple plugin with a few date-related utilities

MIT License

Downloads
23
Stars
4
Committers
1

NativeScript Date Utils

Installation

tns plugin add nativescript-date-utils

Running the demo app

After cloning, go into the src folder and run npm run demo.ios or npm run demo.android.

API

is24hFormat

Determine whether or not the user's device is currently running in 24 hour format.

TypeScript

import { DateUtils } from 'nativescript-date-utils';

DateUtils.is24hFormat().then((is24h: boolean) => {
  console.log(`This device is currently ${is24h ? '' : 'not'} running in 24 hour format.`);
});

JavaScript

var DateUtils = require("nativescript-date-utils").DateUtils;

DateUtils.is24hFormat().then(function (is24h) {
  console.log('This device is currently ' + (is24h ? '' : 'not') + ' running in 24 hour format.');
});
Package Rankings
Top 19.92% on Npmjs.org
Badges
Extracted from project README
Build Status NPM version Downloads Twitter Follow
Related Projects