anyone 1.0.5-dev-d315d9 → 1.0.5

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.
@@ -24,7 +24,11 @@ function check(value) {
24
24
  /**
25
25
  * Checks that at all passed arguments evaluate to a truthy value.
26
26
  */
27
- function all(...args) {
27
+ function all() {
28
+ var args = [];
29
+ for (var _i = 0; _i < arguments.length; _i++) {
30
+ args[_i] = arguments[_i];
31
+ }
28
32
  return args.every(run);
29
33
  }
30
34
 
@@ -1 +1 @@
1
- "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(...r){return r.every(t)};
1
+ "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(){for(var r=[],e=0;e<arguments.length;e++)r[e]=arguments[e];return r.every(t)};
@@ -24,7 +24,11 @@ function check(value) {
24
24
  /**
25
25
  * Checks that at least one passed argument evaluates to a truthy value.
26
26
  */
27
- function any(...args) {
27
+ function any() {
28
+ var args = [];
29
+ for (var _i = 0; _i < arguments.length; _i++) {
30
+ args[_i] = arguments[_i];
31
+ }
28
32
  return args.some(run);
29
33
  }
30
34
 
@@ -1 +1 @@
1
- "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(...r){return r.some(t)};
1
+ "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.some(t)};
@@ -26,30 +26,46 @@ function check(value) {
26
26
  /**
27
27
  * Checks that at all passed arguments evaluate to a truthy value.
28
28
  */
29
- function all(...args) {
29
+ function all() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
30
34
  return args.every(run);
31
35
  }
32
36
 
33
37
  /**
34
38
  * Checks that at least one passed argument evaluates to a truthy value.
35
39
  */
36
- function any(...args) {
40
+ function any() {
41
+ var args = [];
42
+ for (var _i = 0; _i < arguments.length; _i++) {
43
+ args[_i] = arguments[_i];
44
+ }
37
45
  return args.some(run);
38
46
  }
39
47
 
40
48
  /**
41
49
  * Checks that at none of the passed arguments evaluate to a truthy value.
42
50
  */
43
- function none(...args) {
51
+ function none() {
52
+ var args = [];
53
+ for (var _i = 0; _i < arguments.length; _i++) {
54
+ args[_i] = arguments[_i];
55
+ }
44
56
  return args.every(vestUtils.bindNot(run));
45
57
  }
46
58
 
47
59
  /**
48
60
  * Checks that at only one passed argument evaluates to a truthy value.
49
61
  */
50
- function one(...args) {
51
- let count = 0;
52
- for (let i = 0; i < args.length; i++) {
62
+ function one() {
63
+ var args = [];
64
+ for (var _i = 0; _i < arguments.length; _i++) {
65
+ args[_i] = arguments[_i];
66
+ }
67
+ var count = 0;
68
+ for (var i = 0; i < args.length; i++) {
53
69
  if (run(args[i])) {
54
70
  count++;
55
71
  }
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var r=require("vest-utils");function e(e){if(r.isFunction(e))try{return t(e())}catch(r){return!1}return t(e)}function t(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}exports.all=function(...r){return r.every(e)},exports.any=function(...r){return r.some(e)},exports.none=function(...t){return t.every(r.bindNot(e))},exports.one=function(...r){let t=0;for(let n=0;n<r.length;n++)if(e(r[n])&&t++,t>1)return!1;return 1===t};
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var r=require("vest-utils");function e(e){if(r.isFunction(e))try{return n(e())}catch(r){return!1}return n(e)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}exports.all=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.every(e)},exports.any=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.some(e)},exports.none=function(){for(var n=[],t=0;t<arguments.length;t++)n[t]=arguments[t];return n.every(r.bindNot(e))},exports.one=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];for(var t=0,o=0;o<r.length;o++)if(e(r[o])&&t++,t>1)return!1;return 1===t};
@@ -24,7 +24,11 @@ function check(value) {
24
24
  /**
25
25
  * Checks that at none of the passed arguments evaluate to a truthy value.
26
26
  */
27
- function none(...args) {
27
+ function none() {
28
+ var args = [];
29
+ for (var _i = 0; _i < arguments.length; _i++) {
30
+ args[_i] = arguments[_i];
31
+ }
28
32
  return args.every(vestUtils.bindNot(run));
29
33
  }
30
34
 
@@ -1 +1 @@
1
- "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(...n){return n.every(r.bindNot(t))};
1
+ "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(){for(var n=[],e=0;e<arguments.length;e++)n[e]=arguments[e];return n.every(r.bindNot(t))};
@@ -24,9 +24,13 @@ function check(value) {
24
24
  /**
25
25
  * Checks that at only one passed argument evaluates to a truthy value.
26
26
  */
27
- function one(...args) {
28
- let count = 0;
29
- for (let i = 0; i < args.length; i++) {
27
+ function one() {
28
+ var args = [];
29
+ for (var _i = 0; _i < arguments.length; _i++) {
30
+ args[_i] = arguments[_i];
31
+ }
32
+ var count = 0;
33
+ for (var i = 0; i < args.length; i++) {
30
34
  if (run(args[i])) {
31
35
  count++;
32
36
  }
@@ -1 +1 @@
1
- "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(...r){let e=0;for(let n=0;n<r.length;n++)if(t(r[n])&&e++,e>1)return!1;return 1===e};
1
+ "use strict";var r=require("vest-utils");function t(t){if(r.isFunction(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}module.exports=function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];for(var e=0,u=0;u<r.length;u++)if(t(r[u])&&e++,e>1)return!1;return 1===e};
@@ -22,7 +22,11 @@ function check(value) {
22
22
  /**
23
23
  * Checks that at all passed arguments evaluate to a truthy value.
24
24
  */
25
- function all(...args) {
25
+ function all() {
26
+ var args = [];
27
+ for (var _i = 0; _i < arguments.length; _i++) {
28
+ args[_i] = arguments[_i];
29
+ }
26
30
  return args.every(run);
27
31
  }
28
32
 
@@ -1 +1 @@
1
- import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(...r){return r.every(t)}export{e as default};
1
+ import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.every(t)}export{e as default};
@@ -22,7 +22,11 @@ function check(value) {
22
22
  /**
23
23
  * Checks that at least one passed argument evaluates to a truthy value.
24
24
  */
25
- function any(...args) {
25
+ function any() {
26
+ var args = [];
27
+ for (var _i = 0; _i < arguments.length; _i++) {
28
+ args[_i] = arguments[_i];
29
+ }
26
30
  return args.some(run);
27
31
  }
28
32
 
@@ -1 +1 @@
1
- import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(...r){return r.some(t)}export{e as default};
1
+ import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.some(t)}export{e as default};
@@ -22,30 +22,46 @@ function check(value) {
22
22
  /**
23
23
  * Checks that at all passed arguments evaluate to a truthy value.
24
24
  */
25
- function all(...args) {
25
+ function all() {
26
+ var args = [];
27
+ for (var _i = 0; _i < arguments.length; _i++) {
28
+ args[_i] = arguments[_i];
29
+ }
26
30
  return args.every(run);
27
31
  }
28
32
 
29
33
  /**
30
34
  * Checks that at least one passed argument evaluates to a truthy value.
31
35
  */
32
- function any(...args) {
36
+ function any() {
37
+ var args = [];
38
+ for (var _i = 0; _i < arguments.length; _i++) {
39
+ args[_i] = arguments[_i];
40
+ }
33
41
  return args.some(run);
34
42
  }
35
43
 
36
44
  /**
37
45
  * Checks that at none of the passed arguments evaluate to a truthy value.
38
46
  */
39
- function none(...args) {
47
+ function none() {
48
+ var args = [];
49
+ for (var _i = 0; _i < arguments.length; _i++) {
50
+ args[_i] = arguments[_i];
51
+ }
40
52
  return args.every(bindNot(run));
41
53
  }
42
54
 
43
55
  /**
44
56
  * Checks that at only one passed argument evaluates to a truthy value.
45
57
  */
46
- function one(...args) {
47
- let count = 0;
48
- for (let i = 0; i < args.length; i++) {
58
+ function one() {
59
+ var args = [];
60
+ for (var _i = 0; _i < arguments.length; _i++) {
61
+ args[_i] = arguments[_i];
62
+ }
63
+ var count = 0;
64
+ for (var i = 0; i < args.length; i++) {
49
65
  if (run(args[i])) {
50
66
  count++;
51
67
  }
@@ -1 +1 @@
1
- import{isFunction as r,bindNot as t}from"vest-utils";function n(t){if(r(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function u(...r){return r.every(n)}function o(...r){return r.some(n)}function i(...r){return r.every(t(n))}function f(...r){let t=0;for(let e=0;e<r.length;e++)if(n(r[e])&&t++,t>1)return!1;return 1===t}export{u as all,o as any,i as none,f as one};
1
+ import{isFunction as r,bindNot as n}from"vest-utils";function t(n){if(r(n))try{return e(n())}catch(r){return!1}return e(n)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function o(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.every(t)}function u(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];return r.some(t)}function f(){for(var r=[],e=0;e<arguments.length;e++)r[e]=arguments[e];return r.every(n(t))}function i(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];for(var e=0,o=0;o<r.length;o++)if(t(r[o])&&e++,e>1)return!1;return 1===e}export{o as all,u as any,f as none,i as one};
@@ -22,7 +22,11 @@ function check(value) {
22
22
  /**
23
23
  * Checks that at none of the passed arguments evaluate to a truthy value.
24
24
  */
25
- function none(...args) {
25
+ function none() {
26
+ var args = [];
27
+ for (var _i = 0; _i < arguments.length; _i++) {
28
+ args[_i] = arguments[_i];
29
+ }
26
30
  return args.every(bindNot(run));
27
31
  }
28
32
 
@@ -1 +1 @@
1
- import{isFunction as r,bindNot as t}from"vest-utils";function n(t){if(r(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function u(...r){return r.every(t(n))}export{u as default};
1
+ import{isFunction as r,bindNot as t}from"vest-utils";function n(t){if(r(t))try{return e(t())}catch(r){return!1}return e(t)}function e(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function u(){for(var r=[],e=0;e<arguments.length;e++)r[e]=arguments[e];return r.every(t(n))}export{u as default};
@@ -22,9 +22,13 @@ function check(value) {
22
22
  /**
23
23
  * Checks that at only one passed argument evaluates to a truthy value.
24
24
  */
25
- function one(...args) {
26
- let count = 0;
27
- for (let i = 0; i < args.length; i++) {
25
+ function one() {
26
+ var args = [];
27
+ for (var _i = 0; _i < arguments.length; _i++) {
28
+ args[_i] = arguments[_i];
29
+ }
30
+ var count = 0;
31
+ for (var i = 0; i < args.length; i++) {
28
32
  if (run(args[i])) {
29
33
  count++;
30
34
  }
@@ -1 +1 @@
1
- import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(...r){let n=0;for(let e=0;e<r.length;e++)if(t(r[e])&&n++,n>1)return!1;return 1===n}export{e as default};
1
+ import{isFunction as r}from"vest-utils";function t(t){if(r(t))try{return n(t())}catch(r){return!1}return n(t)}function n(r){return!!Array.isArray(r)||0!=r&&Boolean(r)}function e(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];for(var e=0,u=0;u<r.length;u++)if(t(r[u])&&e++,e>1)return!1;return 1===e}export{e as default};
@@ -26,7 +26,11 @@
26
26
  /**
27
27
  * Checks that at all passed arguments evaluate to a truthy value.
28
28
  */
29
- function all(...args) {
29
+ function all() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
30
34
  return args.every(run);
31
35
  }
32
36
 
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).all=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(...e){return e.every(t)}}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).all=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return e.every(t)}}));
@@ -26,7 +26,11 @@
26
26
  /**
27
27
  * Checks that at least one passed argument evaluates to a truthy value.
28
28
  */
29
- function any(...args) {
29
+ function any() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
30
34
  return args.some(run);
31
35
  }
32
36
 
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).any=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(...e){return e.some(t)}}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).any=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return e.some(t)}}));
@@ -26,30 +26,46 @@
26
26
  /**
27
27
  * Checks that at all passed arguments evaluate to a truthy value.
28
28
  */
29
- function all(...args) {
29
+ function all() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
30
34
  return args.every(run);
31
35
  }
32
36
 
33
37
  /**
34
38
  * Checks that at least one passed argument evaluates to a truthy value.
35
39
  */
36
- function any(...args) {
40
+ function any() {
41
+ var args = [];
42
+ for (var _i = 0; _i < arguments.length; _i++) {
43
+ args[_i] = arguments[_i];
44
+ }
37
45
  return args.some(run);
38
46
  }
39
47
 
40
48
  /**
41
49
  * Checks that at none of the passed arguments evaluate to a truthy value.
42
50
  */
43
- function none(...args) {
51
+ function none() {
52
+ var args = [];
53
+ for (var _i = 0; _i < arguments.length; _i++) {
54
+ args[_i] = arguments[_i];
55
+ }
44
56
  return args.every(vestUtils.bindNot(run));
45
57
  }
46
58
 
47
59
  /**
48
60
  * Checks that at only one passed argument evaluates to a truthy value.
49
61
  */
50
- function one(...args) {
51
- let count = 0;
52
- for (let i = 0; i < args.length; i++) {
62
+ function one() {
63
+ var args = [];
64
+ for (var _i = 0; _i < arguments.length; _i++) {
65
+ args[_i] = arguments[_i];
66
+ }
67
+ var count = 0;
68
+ for (var i = 0; i < args.length; i++) {
53
69
  if (run(args[i])) {
54
70
  count++;
55
71
  }
@@ -1 +1 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports,require("vest-utils")):"function"==typeof define&&define.amd?define(["exports","vest-utils"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).anyone={},e["vest-utils"])}(this,(function(e,n){"use strict";function t(e){if(n.isFunction(e))try{return r(e())}catch(e){return!1}return r(e)}function r(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}e.all=function(...e){return e.every(t)},e.any=function(...e){return e.some(t)},e.none=function(...e){return e.every(n.bindNot(t))},e.one=function(...e){let n=0;for(let r=0;r<e.length;r++)if(t(e[r])&&n++,n>1)return!1;return 1===n},Object.defineProperty(e,"__esModule",{value:!0})}));
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports,require("vest-utils")):"function"==typeof define&&define.amd?define(["exports","vest-utils"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).anyone={},e["vest-utils"])}(this,(function(e,n){"use strict";function t(e){if(n.isFunction(e))try{return r(e())}catch(e){return!1}return r(e)}function r(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}e.all=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return e.every(t)},e.any=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return e.some(t)},e.none=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return e.every(n.bindNot(t))},e.one=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];for(var r=0,o=0;o<e.length;o++)if(t(e[o])&&r++,r>1)return!1;return 1===r},Object.defineProperty(e,"__esModule",{value:!0})}));
@@ -26,7 +26,11 @@
26
26
  /**
27
27
  * Checks that at none of the passed arguments evaluate to a truthy value.
28
28
  */
29
- function none(...args) {
29
+ function none() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
30
34
  return args.every(vestUtils.bindNot(run));
31
35
  }
32
36
 
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).none=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(...n){return n.every(e.bindNot(t))}}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).none=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];return n.every(e.bindNot(t))}}));
@@ -26,9 +26,13 @@
26
26
  /**
27
27
  * Checks that at only one passed argument evaluates to a truthy value.
28
28
  */
29
- function one(...args) {
30
- let count = 0;
31
- for (let i = 0; i < args.length; i++) {
29
+ function one() {
30
+ var args = [];
31
+ for (var _i = 0; _i < arguments.length; _i++) {
32
+ args[_i] = arguments[_i];
33
+ }
34
+ var count = 0;
35
+ for (var i = 0; i < args.length; i++) {
32
36
  if (run(args[i])) {
33
37
  count++;
34
38
  }
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).one=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(...e){let n=0;for(let r=0;r<e.length;r++)if(t(e[r])&&n++,n>1)return!1;return 1===n}}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("vest-utils")):"function"==typeof define&&define.amd?define(["vest-utils"],t):(e="undefined"!=typeof globalThis?globalThis:e||self).one=t(e["vest-utils"])}(this,(function(e){"use strict";function t(t){if(e.isFunction(t))try{return n(t())}catch(e){return!1}return n(t)}function n(e){return!!Array.isArray(e)||0!=e&&Boolean(e)}return function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];for(var r=0,i=0;i<e.length;i++)if(t(e[i])&&r++,r>1)return!1;return 1===r}}));
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "license": "MIT",
4
4
  "main": "./dist/cjs/anyone.js",
5
5
  "types": "./types/anyone.d.ts",
6
- "version": "1.0.5-dev-d315d9",
6
+ "version": "1.0.5",
7
7
  "author": "ealush",
8
8
  "scripts": {
9
9
  "test": "vx test",
@@ -11,7 +11,7 @@
11
11
  "release": "vx release"
12
12
  },
13
13
  "dependencies": {
14
- "vest-utils": "^0.1.0-dev-d315d9"
14
+ "vest-utils": "^0.1.0"
15
15
  },
16
16
  "module": "./dist/es/anyone.production.js",
17
17
  "exports": {