Skip to content
View GautamPanickar's full-sized avatar
💭
Padam pam pishh!
💭
Padam pam pishh!
Block or Report

Block or report GautamPanickar

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. Service worker with Google's Workbox... Service worker with Google's Workbox for Angular App - SW file
    1
    import {precacheAndRoute} from 'workbox-precaching';
    2
    import {registerRoute} from 'workbox-routing';
    3
    import { ServiceWorkerHandler } from './sw-handlers';
    4
    
                  
    5
    declare const self: any;
  2. Service worker with Google's Workbox... Service worker with Google's Workbox for Angular App - handler file
    1
    export const BG_IMAGES_CACHE = 'bg-images-cache';
    2
    
                  
    3
    export class ServiceWorkerHandler {
    4
    
                  
    5
        private dbPromise: IDBOpenDBRequest;
  3. middlemen middlemen Public

    MiddleMen - Connecting the missing dots

    TypeScript 3

  4. bulkAdd-logicalAdd-singleTrans.js bulkAdd-logicalAdd-singleTrans.js
    1
    /**
    2
    * Here also, all objects are added in a single transaction, with the difference being, before addition,
    3
    * the object is checked for equality. If same object exists, then update is performed, otherwise addition is proceeded.
    4
    */
    5
    connection.onsuccess = (e) => {
  5. bulkAdd-singleTrans.js bulkAdd-singleTrans.js
    1
    /**
    2
    * Here all objects are added into store in a single transaction.
    3
    */
    4
    
                  
    5
    connection.onsuccess = (e) => {