@thi.ng/soa 0.3.1 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.3.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.3.2...@thi.ng/soa@0.3.3) (2021-10-15)
7
+
8
+ **Note:** Version bump only for package @thi.ng/soa
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.3.1...@thi.ng/soa@0.3.2) (2021-10-15)
15
+
16
+ **Note:** Version bump only for package @thi.ng/soa
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/soa@0.3.0...@thi.ng/soa@0.3.1) (2021-10-13)
7
23
 
8
24
  **Note:** Version bump only for package @thi.ng/soa
package/README.md CHANGED
@@ -83,7 +83,7 @@ node --experimental-repl-await
83
83
  > const soa = await import("@thi.ng/soa");
84
84
  ```
85
85
 
86
- Package sizes (gzipped, pre-treeshake): ESM: 1.44 KB
86
+ Package sizes (gzipped, pre-treeshake): ESM: 1.43 KB
87
87
 
88
88
  ## Dependencies
89
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/soa",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "SOA & AOS memory mapped structured views with optional & extensible serialization",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,15 +34,15 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.0.1",
38
- "@thi.ng/binary": "^3.0.1",
39
- "@thi.ng/errors": "^2.0.1",
40
- "@thi.ng/transducers-binary": "^2.0.1",
41
- "@thi.ng/vectors": "^7.0.1"
37
+ "@thi.ng/api": "^8.0.3",
38
+ "@thi.ng/binary": "^3.0.3",
39
+ "@thi.ng/errors": "^2.0.3",
40
+ "@thi.ng/transducers-binary": "^2.0.3",
41
+ "@thi.ng/vectors": "^7.0.3"
42
42
  },
43
43
  "devDependencies": {
44
- "@thi.ng/equiv": "^2.0.1",
45
- "@thi.ng/testament": "^0.1.1"
44
+ "@thi.ng/equiv": "^2.0.3",
45
+ "@thi.ng/testament": "^0.1.3"
46
46
  },
47
47
  "keywords": [
48
48
  "acceleration",
@@ -100,5 +100,5 @@
100
100
  "status": "alpha",
101
101
  "year": 2019
102
102
  },
103
- "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
103
+ "gitHead": "1fb38cac74d6c009d96855c28784a267a81badf1"
104
104
  }
package/soa.js CHANGED
@@ -3,9 +3,6 @@ import { assert } from "@thi.ng/errors/assert";
3
3
  import { ensureIndex } from "@thi.ng/errors/out-of-bounds";
4
4
  import { prepareSpec } from "./utils.js";
5
5
  export class SOA {
6
- length;
7
- buffers;
8
- specs;
9
6
  constructor(num, specs) {
10
7
  this.length = num;
11
8
  this.buffers = {};