Sha256: cddd41474b7dd981cf9e71c070df35c58a57aa13dfb6ca7d95122d1ec7181cea
Contents?: true
Size: 727 Bytes
Versions: 24
Compression:
Stored size: 727 Bytes
Contents
"use strict"; const EventImpl = require("./Event-impl").implementation; const StorageEventInit = require("../generated/StorageEventInit"); // https://html.spec.whatwg.org/multipage/webstorage.html#the-storageevent-interface class StorageEventImpl extends EventImpl { initStorageEvent(type, bubbles, cancelable, key, oldValue, newValue, url, storageArea) { if (this._dispatchFlag) { return; } this.initEvent(type, bubbles, cancelable); this.key = key; this.oldValue = oldValue; this.newValue = newValue; this.url = url; this.storageArea = storageArea; } } StorageEventImpl.defaultInit = StorageEventInit.convert(undefined); module.exports = { implementation: StorageEventImpl };
Version data entries
24 entries across 22 versions & 2 rubygems