Skip to content
View gilly3's full-sized avatar
Block or Report

Block or report gilly3

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

  1. timespan-parser timespan-parser Public

    Node package for parsing timespans like systemd.time(7)

    JavaScript 5 1

  2. lowFloat lowFloat Public

    A jQuery plugin for floating an element at the bottom left or bottom right corner of some content, with text and other content wrapping around it.

    JavaScript 8 4

  3. lazy-json-viewer lazy-json-viewer Public

    Expandable, collapsible, skinable, browser-based JSON viewer.

    JavaScript 4

  4. JavaScript date formatting function,... JavaScript date formatting function, loosely based on .Net's `String.Format()` for `DateTime`.
    1
    export default function formatDate(date, format, utc)
    2
    {
    3
        var MMMM = ["\x00", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
    4
        var MMM = ["\x01", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
    5
        var dddd = ["\x02", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];