npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

worldtime

v0.1.7

Published

Convert to and from various worldtime formats. Get manipulated time values.

Downloads

4

Readme

worldtime

(c)Bumblehead, 2013,2014,2015,2016 MIT-license

Overview:

worldtime uses official Unicode ldml-JSON files to format and parse international times (files are found in json-locale).

worldtime extends simpletime to provide all simpletime methods. Use it to format and unformat international time using unicode forms.

var worldtime = require('worldtime'),
    uobj = require('es_CL.json');

worldtime.getFormattedDate(uobj, new Date(), 'medium');
// "09-01-2016"

worldtime.extractFormattedDate(uobj, '09-01-2016', 'medium');
// Sat Jan 09 2016 01:01:12 GMT-0800 (PST)

worldtime.getDateMonthNameWide(uobj, new Date());
// "enero"

worldtime.getNumericMonthNameWide(uobj, '2');
// "febrero"

worldtime.getStrDayNameAbbrev(uobj, 'thu');
// "jue"

The below method list is abbreviated. See worldtime and simpletime source files for the full list.


methods

  • getCalendarObj ( uObj, calendarType )

    returns a calendar object from the unicode object. valid calendarTypes: "buddhist", "chinese", "coptic", "dangi", "ethiopic", "ethiopicAmeteAlem", "gregorian", "hebrew", "indian", "islamic", "islamicCivil", "japanese", "persian", "roc".

    ex,

    worldtime.getCalendarObj(uobj, 'gregorian').months.format.wide
    //{ '1': 'enero',
    //  '2': 'febrero',
    //  '3': 'marzo',
    //  '4': 'abril',
    //  '5': 'mayo',
    //  '6': 'junio',
    //  '7': 'julio',
    //  '8': 'agosto',
    //  '9': 'septiembre',
    //  '10': 'octubre',
    //  '11': 'noviembre',
    //  '12': 'diciembre' }
  • getCalendarUnit ( uObj, unitType )

    returns a calendar unit object from the unicode object. valid unitTypes: "months", "days", "quarters", "eras", "dateFormats", "timeFormats", "dateTimeFormats", "fields".

    ex,

    worldtime.getCalendarUnit(uobj, 'dateFormats').medium.dateFormat.pattern
    // 'dd-MM-yyyy'
  • getMonthNameFormatObj ( uObj, monthType )

    returns an object of month names for the given month type. months are provided by the gregorian calendar object. valid monthTypes: "abbreviated", "narrow", "wide".

    ex,

    worldtime.getMonthNameFormatObj(uobj, 'abbreviated');
    //{ '1': 'ene',
    //  '2': 'feb',
    //  '3': 'mar',
    //  '4': 'abr',
    //  '5': 'may',
    //  '6': 'jun',
    //  '7': 'jul',
    //  '8': 'ago',
    //  '9': 'sep',
    //  '10': 'oct',
    //  '11': 'nov',
    //  '12': 'dic' }
  • getBaseMonthsArr ( uObj, formatType )

    returns an array of months for the given format type. valid formatType: "abbreviated", "narrow", "wide".

    ex,

    worldtime.getBaseMonthsArr(es_CLObj, 'abbreviated');
    //[ 'feb',
    //  'mar',
    //  'abr',
    //  'may',
    //  'jun',
    //  'jul',
    //  'ago',
    //  'sep',
    //  'oct',
    //  'nov',
    //  'dic' ]
  • getNumericMonthNameAbbrev ( uObj, monthNum )

    returns a month name of the abbreviated month type for the given monthNum.

    ex,

    worldtime.getNumericMonthNameAbbrev(uobj, '1');
    // ene
  • getNumericMonthNameWide ( uObj, monthNum )

    returns a month name of the wide month type for the given monthNum.

    ex,

    worldtime.getNumericMonthNameWide(uobj, '1');
    // enero
  • getDayNameFormatObj ( uObj, dayType )

    returns an object of day names for the given day type. months are provided by the gregorian calendar object. valid dayType: "abbreviated", "narrow", "wide".

    ex,

    var result = worldtime.getDayNameFormatObj(uobj, 'abbreviated');
    //{ 'sun': 'dom',
    //  'mon': 'lun',
    //  'tue': 'mar',
    //  'wed': 'mié',
    //  'thu': 'jue',
    //  'fri': 'vie',
    //  'sat': 'sáb' }
  • getBaseDaysArr ( uobj, formatType )

    returns an array of days for the given format type. valid formatType: "abbreviated", "narrow", "wide".

    ex,

    worldtime.getBaseDaysArr(uobj, 'abbreviated');
    //[ 'dom',
    //  'lun',
    //  'mar',
    //  'mié',
    //  'jue',
    //  'vie',
    //  'sáb' ]
  • getStrDayNameAbbrev ( uObj, dayStr )

    returns a day name of the abbreviated day type for the given dayStr. valid dayStr: "sun", "mon", "tue", "wed", "thu", "fri", "sat".

    ex,

    worldtime.getStrDayNameAbbrev(uobj, 'mon');
    // lun
  • getStrDayNameWide ( uObj, dayStr )

    returns a day name of the wide day type for the given dayStr.

    ex,

    worldtime.getStrDayNameWide(uobj, 'mon');
    // lunes
  • getDateMonthNameAbbrev ( uObj, date )

    returns a "abbrev" day name for the given date.

    ex,

    worldtime.getDateMonthNameAbbrev(uobj, date);
    // abr
  • getDateMonthNameWide ( uObj, date )

    returns a "wide" day name for the given date.

    ex,

    worldtime.getDateMonthNameWide(uobj, date);
    // abril
  • getDateFormat ( uObj, formatType )

    returns a date format of the given formatType. valid formatType: "full", "long", "medium", "short". If no formatType given, the default format of the locale is returned.

    ex,

    worldtime.getDateFormat(uobj, 'short');
    // dd-MM-yy
  • getTimeFormat ( uObj, formatType )

    returns a time format of the given formatType. valid formatType: "full", "long", "medium", "short". If no formatType given, the default format of the locale is returned.

    ex,

    worldtime.getTimeFormat(uobj, 'short');
    // H:mm
  • getFormattedDate ( uObj, dateObj , formatType )

    returns the given date in the given and formatType. valid formatType: "full", "long", "medium", "short". If no formatType is given, the default format of the locale is returned.

    ex,

    worldtime.getFormattedDate(uobj, new Date(), 'short');
    // 05-04-13
  • getFormattedTime ( uObj, dateObj , formatType )

    returns the given time in the given and formatType. valid formatType: "full", "long", "medium", "short". If no formatType is given, the default format of the locale is returned.

    ex,

    worldtime.getFormattedTime(uobj, new Date(), 'short');
    // 21:23
  • extractFormattedDate ( uObj, dateStr , formatType )

    returns a date from a given dateStr following the given formatType. valid formatType: "full", "long", "medium", "short". If no formatType is given, the default format of the locale is returned.

    ex,

    worldtime.extractFormattedDate(uobj, '05-04-13', 'short');
    // Fri Apr 05 13 23:13:55 GMT-0700 (PDT)

scroungees5 classic

(The MIT License)

Copyright (c) 2013 Bumblehead [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.