Skip to content
View svapreddy's full-sized avatar
💭
Don't miss a dime to grab a nickel
💭
Don't miss a dime to grab a nickel
Block or Report

Block or report svapreddy

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. clearx clearx Public

    ClearX is an alternative way to Redux and MobX to maintain the application state and provides a simple interface to bind it to UI components.

    JavaScript 64 10

  2. rollup-plugin-app-utils rollup-plugin-app-utils Public

    Provides common rollup build utils for i18n, prepare & clean directories, copy assets & html injects

    JavaScript 7 3

  3. element-visibility-watcher element-visibility-watcher Public

    Event will be fired when Element has come visible from invisible state or vice versa.

    JavaScript 8 3

  4. ractive-events-typing ractive-events-typing Public

    RactiveJS Live typing plugin for beforetyping, typing, paused, stopped, events on textbox, textarea and editable div

    JavaScript 6 1

  5. ractive-widgets-virtual-scroll ractive-widgets-virtual-scroll Public

    Virtual scroll implementation for RactiveJS (For Dynamic height and equal height lists)

    JavaScript 10 2

  6. A small util to generate Calendar Mo... A small util to generate Calendar Model for any given month and Year
    1
    /* Expects month to be in 1-12 index based. */
    2
    var monthInformation = function(year, month){
    3
        /* Create a date. Usually month in JS is 0-11 index based but here is a hack that can be used to calculate total days in a month */
    4
        var date = new Date(year, month, 0);
    5
        /* Get the total number of days in a month */