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

bitecs

Package Overview
Dependencies
Maintainers
1
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitecs - npm Package Compare versions

Comparing version 0.2.11 to 0.2.12

4

dist/index.es.js

@@ -585,3 +585,3 @@ const TYPES_ENUM = {

const notMasks = notComponents.map(c => world[$componentMap].get(c)).reduce(reduceBitmasks, {});
const flatProps = components.map(c => !ArrayBuffer.isView(c) ? c._flatten() : [c]).reduce((a, v) => a.concat(v), []);
const flatProps = components.map(c => c._flatten ? c._flatten() : [c]).reduce((a, v) => a.concat(v), []);
Object.assign(world[$queryMap].get(query), {

@@ -679,3 +679,3 @@ entities,

const $deferredComponentRemovals = Symbol('de$deferredComponentRemovals');
const defineComponent = (schema, n) => alloc(schema, n);
const defineComponent = schema => schema.constructor.name === 'Map' ? schema : alloc(schema);
const incrementBitflag = world => {

@@ -682,0 +682,0 @@ world[$bitflag] *= 2;

@@ -589,3 +589,3 @@ 'use strict';

const notMasks = notComponents.map(c => world[$componentMap].get(c)).reduce(reduceBitmasks, {});
const flatProps = components.map(c => !ArrayBuffer.isView(c) ? c._flatten() : [c]).reduce((a, v) => a.concat(v), []);
const flatProps = components.map(c => c._flatten ? c._flatten() : [c]).reduce((a, v) => a.concat(v), []);
Object.assign(world[$queryMap].get(query), {

@@ -683,3 +683,3 @@ entities,

const $deferredComponentRemovals = Symbol('de$deferredComponentRemovals');
const defineComponent = (schema, n) => alloc(schema, n);
const defineComponent = schema => schema.constructor.name === 'Map' ? schema : alloc(schema);
const incrementBitflag = world => {

@@ -686,0 +686,0 @@ world[$bitflag] *= 2;

{
"name": "bitecs",
"version": "0.2.11",
"version": "0.2.12",
"description": "Tiny, data-driven, high performance ECS library written in Javascript",

@@ -5,0 +5,0 @@ "license": "MPL-2.0",

Sorry, the diff of this file is not supported yet

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