Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firecomponent

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firecomponent - npm Package Compare versions

Comparing version 1.0.12 to 1.0.13

2

package.json
{
"name": "firecomponent",
"version": "1.0.12",
"version": "1.0.13",
"description": "A set of components for displaying information from Firebase, allowing admin edits if desired Edit",

@@ -5,0 +5,0 @@ "main": "Components.vue",

@@ -1,13 +0,21 @@

import Vue from 'vue'
import Vue from 'vue';
const eventBus = new Vue()
var eventBus = new Vue();
const send = (message) => {
eventBus.$emit(message)
}
var send = function(message) {
eventBus.$emit(message);
};
var save = function() {
send('save');
};
var reset = function() {
send('reset');
};
export default {
save: () => send('save'),
reset: () => send('reset'),
save: save,
reset: reset,
bus: eventBus,
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc