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

@boost/event

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boost/event - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

20

CHANGELOG.md

@@ -6,2 +6,22 @@ # Change Log

### 1.1.1 - 2019-11-12
#### 📘 Docs
- Fix GitHub CI badge. ([122c369](https://github.com/milesj/boost/tree/master/packages/event/commit/122c369))
#### 📋 Misc
- Add funding to all packages. ([863a614](https://github.com/milesj/boost/tree/master/packages/event/commit/863a614))
#### 🛠 Internals
- Migrate to GitHub CI and actions. (#65) ([ce59e85](https://github.com/milesj/boost/tree/master/packages/event/commit/ce59e85)), closes [#65](https://github.com/milesj/boost/tree/master/packages/event/issues/65)
**Note:** Version bump only for package @boost/event
## 1.1.0 - 2019-08-03

@@ -8,0 +28,0 @@

13

lib/BaseEvent.js

@@ -7,3 +7,14 @@ "use strict";

constructor(name) {
this.listeners = new Map();
Object.defineProperty(this, "listeners", {
enumerable: true,
configurable: true,
writable: true,
value: new Map()
});
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.name = this.validateName(name, 'name');

@@ -10,0 +21,0 @@ }

10

package.json
{
"name": "@boost/event",
"version": "1.1.0",
"version": "1.1.1",
"description": "A type-safe event system. Designed for Boost applications.",

@@ -22,3 +22,3 @@ "keywords": [

"dependencies": {
"@boost/internal": "^1.0.0"
"@boost/internal": "^1.0.1"
},

@@ -30,3 +30,7 @@ "tsconfig": {

},
"gitHead": "df95147bce94ffa5bdddd011edf3d4261255f094"
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"gitHead": "9d9e6858b1330fd3d1d580f2bb4216118d38ff31"
}
# Boost Event
[![Build Status](https://travis-ci.org/milesj/boost.svg?branch=master)](https://travis-ci.org/milesj/boost)
[![Build Status](https://github.com/milesj/boost/workflows/Build/badge.svg)](https://github.com/milesj/boost/actions?query=branch%3Amaster)
[![npm version](https://badge.fury.io/js/%40boost%event.svg)](https://www.npmjs.com/package/@boost/event)

@@ -5,0 +5,0 @@ [![npm deps](https://david-dm.org/milesj/boost.svg?path=packages/event)](https://www.npmjs.com/package/@boost/event)

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