Skip to content
View spatialtime's full-sized avatar
🎨
Focusing
🎨
Focusing
Block or Report

Block or report spatialtime

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. iso8601 iso8601 Public

    Format and parse ISO 8601 dates, times, datetimes, time zones, weeks, ordinal dates and durations.

    Go 1 1

  2. iso8601-js iso8601-js Public

    iso8601-js is a formatter and parser for ISO 8601 (extended format version). It is published as an ES6 module.

    JavaScript 1 2

  3. JavaScript and ISO 8601 ordinal dates JavaScript and ISO 8601 ordinal dates
    1
    //------------------------------------------------------------------------------
    2
    // Constants
    3
    //------------------------------------------------------------------------------
    4
    const MIN_YEAR =1;
    5
    const MAX_YEAR = 9999;
  4. Golang and ISO 8601 durations Golang and ISO 8601 durations
    1
    // This snippet demonstrates Golang formatting and parsing of ISO 8601 durations.
    2
    // A little work is required to navigate between Golang's
    3
    // duration syntax and ISO 8601 duration syntax.
    4
    
                  
    5
    import (
  5. Golang and ISO 8601 ordinal dates Golang and ISO 8601 ordinal dates
    1
    // This snippet demonstrates Golang formatting and parsing of
    2
    // ISO 8601 ordinal dates (4-digit year + "-" + ordinal day).
    3
    // Note: an ordinal day in this context is the nth day of
    4
    // the year, with Jan 1 being ordinal day 1 and Dec 31
    5
    // of non-leap year (a "common year") being day 365.
  6. Python and ISO 8601 durations Python and ISO 8601 durations
    1
    # This snippet demonstrates Pythonic formatting and parsing of 
    2
    # ISO 8601 durations.
    3
    # A little work is required to navigate between Python's
    4
    # timedelta syntax and ISO 8601 duration syntax.
    5