Socket
Socket
Sign inDemoInstall

@burninggarden/engine

Package Overview
Dependencies
233
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.2 to 0.0.3

bin/test-one

2

package.json
{
"name": "@burninggarden/engine",
"description": "Core game runtime engine",
"version": "0.0.2",
"version": "0.0.3",
"private": false,

@@ -6,0 +6,0 @@ "author": "Burning Garden",

@@ -53,4 +53,2 @@ /**

private handleAction(action: BaseAction) : void {
console.log(this.getStore().getState());
this.getSystems().forEach(system => {

@@ -57,0 +55,0 @@ system.handleAction(action);

function updateItem<T extends object>(item: T, attributes: Partial<T>) : T {
function updateItem<T>(item: T, attributes: Partial<T>) : T {
return {
...(item as object),
...(attributes as object)
...item,
...attributes
} as T;

@@ -7,0 +7,0 @@ }

@@ -37,3 +37,3 @@ import Tap from 'tap';

protected performClockUpdate(): void {
test.notOk('Received expected update');
test.notOk('Received unexpected update');
test.end();

@@ -40,0 +40,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc