smsmslib 1.0.65 → 1.0.67

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.
@@ -26,8 +26,8 @@
26
26
  * --------------------------------------------------------------------------- */
27
27
 
28
28
  import {sj_is_constructor} from "./type.js"
29
- import {sj_array_push} from "./array.js";
30
- import {sj_array_concat_new} from "./arrayapp.js";
29
+ import {sj_array_push} from "./arraypush.js";
30
+ import {sj_array_concat_new} from "./arrayconcat.js";
31
31
  import {Observer_t} from "./Observer_t.js";
32
32
 
33
33
 
@@ -118,7 +118,7 @@ function mat_new_init(ai_dim)
118
118
  */
119
119
  function mat_new_push(aa_stack, a_mat)
120
120
  {
121
- const a_push = sj_array_new(0, 0);
121
+ let a_push = sj_array_new(0, 0);
122
122
 
123
123
  if (a_push)
124
124
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smsmslib",
3
- "version": "1.0.65",
3
+ "version": "1.0.67",
4
4
  "description": "Reusable functions for me.",
5
5
  "files": [
6
6
  "javascr/**/*.js",
@@ -19,6 +19,6 @@
19
19
  "author": "",
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
- "smsmslib": "^1.0.65"
22
+ "smsmslib": "^1.0.67"
23
23
  }
24
24
  }