1.0.0 • Published 8 years ago
nativescript-date-utils v1.0.0
NativeScript Date Utils
Installation
tns plugin add nativescript-date-utilsRunning 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.');
});1.0.0
8 years ago