Sha256: bbd4f6f0045d082b61efabd8c3719951ab8b5ece6d3dd53a3648d8c4e66869ec
Contents?: true
Size: 738 Bytes
Versions: 26
Compression:
Stored size: 738 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, undefined); module.exports = { implementation: StorageEventImpl };
Version data entries
26 entries across 26 versions & 1 rubygems