smsmslib 1.0.25 → 1.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smsmslib",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Reusable functions for me.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -15,7 +15,7 @@ export function sj_reducer_use(hf_type, init, f_init, user)
15
15
 
16
16
  function sj_reducer_onAction_use(hf_type, f_dispatch, user)
17
17
  {
18
- function wrapper(hf_type, f_dispatch, user)
18
+ function wrapper()
19
19
  {
20
20
  const f_onAction = sj_reducer_onAction_create(hf_type, f_dispatch, user);
21
21
 
@@ -70,7 +70,7 @@ function sj_reducer(value, o_action)
70
70
 
71
71
  function Reducer_t_use(value, f_onAction, user)
72
72
  {
73
- function wrapper(value, f_onAction, user)
73
+ function wrapper()
74
74
  {
75
75
  const o_reducer = Reducer_t_create(value, f_onAction, user);
76
76