Skip to content
View Sidd27's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Bengaluru
Block or Report

Block or report Sidd27

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. sv-bootstrap-dropdown sv-bootstrap-dropdown Public

    Svelte Bootstrap Dropdown [Svelte Component for Bootstrap Dropdown]

    Svelte 11 2

  2. sv-bootstrap-tooltip sv-bootstrap-tooltip Public

    Svelte Bootstrap Tooltip Component

    Svelte 1 1

  3. sv-bootstrap-modal sv-bootstrap-modal Public

    Svelte Modal Component for Bootstrap (Svelte Bootstrap Modal)

    Svelte 14 2

  4. covid-19-dashboard covid-19-dashboard Public

    Displaying the Covid 19 Data for India

    Svelte 4 2

  5. Indian Currency Pipe for Angular Indian Currency Pipe for Angular
    1
    import { Pipe, PipeTransform } from '@angular/core';
    2
    
                  
    3
    @Pipe({
    4
      name: 'indianCurrency'
    5
    })
  6. Curry Function in ES5 (Javascript) I... Curry Function in ES5 (Javascript) It returns the curried function
    1
    function curry(fn) {
    2
      var arity = fn.length;
    3
      return (function resolver() {
    4
        var memory = Array.prototype.slice.call(arguments);
    5
        return function () {