@tempots/std 0.12.0 → 0.14.0
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/array.cjs +1 -1
- package/array.d.ts +35 -67
- package/array.js +108 -167
- package/async-result.d.ts +15 -15
- package/bigint.cjs +1 -1
- package/bigint.d.ts +20 -20
- package/bigint.js +37 -78
- package/boolean.cjs +1 -1
- package/boolean.d.ts +5 -5
- package/boolean.js +10 -19
- package/equal.cjs +1 -1
- package/equal.d.ts +3 -3
- package/equal.js +31 -37
- package/error.cjs +1 -0
- package/error.d.ts +24 -0
- package/error.js +26 -0
- package/function.cjs +1 -1
- package/function.d.ts +3 -20
- package/function.js +7 -28
- package/index.cjs +1 -1
- package/index.d.ts +1 -0
- package/index.js +155 -159
- package/number.cjs +1 -1
- package/number.d.ts +25 -25
- package/number.js +39 -97
- package/object.cjs +1 -1
- package/object.d.ts +6 -6
- package/object.js +12 -27
- package/package.json +15 -1
- package/promise.cjs +1 -0
- package/promise.d.ts +11 -0
- package/promise.js +9 -0
- package/regexp.cjs +1 -1
- package/regexp.d.ts +1 -1
- package/regexp.js +8 -8
- package/result.d.ts +8 -8
- package/string.cjs +4 -4
- package/string.d.ts +337 -112
- package/string.js +193 -389
- package/validation.d.ts +7 -7
package/boolean.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* @returns A comparison value.
|
|
10
10
|
* @public
|
|
11
11
|
*/
|
|
12
|
-
export declare
|
|
12
|
+
export declare const compareBooleans: (a: boolean, b: boolean) => number;
|
|
13
13
|
/**
|
|
14
14
|
* Converts a boolean to an integer value (`true` => `1`, `false` => `0`).
|
|
15
15
|
*
|
|
@@ -17,7 +17,7 @@ export declare function compareBooleans(a: boolean, b: boolean): number;
|
|
|
17
17
|
* @returns The integer value.
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
export declare
|
|
20
|
+
export declare const booleanToInt: (v: boolean) => number;
|
|
21
21
|
/**
|
|
22
22
|
* Returns `true` if the passed value can be parsed as a boolean. The following values are considered parsable:
|
|
23
23
|
*
|
|
@@ -31,7 +31,7 @@ export declare function booleanToInt(v: boolean): number;
|
|
|
31
31
|
* @returns `true` if the value can be parsed; otherwise, `false`.
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
export declare
|
|
34
|
+
export declare const canParseBoolean: (v: string) => boolean;
|
|
35
35
|
/**
|
|
36
36
|
* Returns `true`/`false` if the passed value can be parsed. The following values are considered parsable:
|
|
37
37
|
*
|
|
@@ -43,7 +43,7 @@ export declare function canParseBoolean(v: string): boolean;
|
|
|
43
43
|
* @returns The parsed boolean value.
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
export declare
|
|
46
|
+
export declare const parseBoolean: (v: string) => boolean;
|
|
47
47
|
/**
|
|
48
48
|
* Returns `true` when arguments are different.
|
|
49
49
|
*
|
|
@@ -52,4 +52,4 @@ export declare function parseBoolean(v: string): boolean;
|
|
|
52
52
|
* @returns The result of the XOR operation.
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
export declare
|
|
55
|
+
export declare const xorBoolean: (a: boolean, b: boolean) => boolean;
|
package/boolean.js
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
function n(e) {
|
|
5
|
-
return e ? 1 : 0;
|
|
6
|
-
}
|
|
7
|
-
function o(e) {
|
|
1
|
+
import { ParsingError as a } from "./error.js";
|
|
2
|
+
const r = (e, o) => e === o ? 0 : e ? -1 : 1, t = (e) => e ? 1 : 0, n = (e) => {
|
|
8
3
|
if (e == null) return !1;
|
|
9
4
|
switch (e.toLowerCase()) {
|
|
10
5
|
case "true":
|
|
@@ -17,8 +12,7 @@ function o(e) {
|
|
|
17
12
|
default:
|
|
18
13
|
return !1;
|
|
19
14
|
}
|
|
20
|
-
}
|
|
21
|
-
function t(e) {
|
|
15
|
+
}, c = (e) => {
|
|
22
16
|
switch (e.toLowerCase()) {
|
|
23
17
|
case "true":
|
|
24
18
|
case "1":
|
|
@@ -29,16 +23,13 @@ function t(e) {
|
|
|
29
23
|
case "off":
|
|
30
24
|
return !1;
|
|
31
25
|
default:
|
|
32
|
-
throw new
|
|
26
|
+
throw new a(`unable to parse '${e}' to boolean`);
|
|
33
27
|
}
|
|
34
|
-
}
|
|
35
|
-
function s(e, r) {
|
|
36
|
-
return e !== r;
|
|
37
|
-
}
|
|
28
|
+
}, l = (e, o) => e !== o;
|
|
38
29
|
export {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
30
|
+
t as booleanToInt,
|
|
31
|
+
n as canParseBoolean,
|
|
32
|
+
r as compareBooleans,
|
|
33
|
+
c as parseBoolean,
|
|
34
|
+
l as xorBoolean
|
|
44
35
|
};
|
package/equal.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const g=(e,t)=>e===t||e!==e&&t!==t,f=(e,t)=>{if(g(e,t))return!0;if(e==null||t==null)return!1;const l=Array.isArray(e),h=Array.isArray(t);if(l!==h)return!1;if(l){const s=e,n=t,a=s.length;if(a!==n.length)return!1;for(let r=0;r<a;r++)if(!f(s[r],n[r]))return!1;return!0}const u=e instanceof Date,j=t instanceof Date;if(u!==j)return!1;if(u){const s=e,n=t;return+s==+n}const p=e instanceof Set,I=t instanceof Set;if(p!==I)return!1;if(p){const s=e,n=t;if(s.size!==n.size)return!1;const a=s.keys();for(;;){const r=a.next();if(r.done??!1)break;if(!n.has(r.value))return!1}return!0}const y=e instanceof Map,O=t instanceof Map;if(y!==O)return!1;if(y){const s=e,n=t;if(s.size!==n.size)return!1;const r=s.keys();for(;;){const o=r.next();if(o.done??!1)break;if(!f(s.get(o.value),n.get(o.value)))return!1}return!0}const b=typeof e=="object";if(b!==(typeof t=="object"))return!1;if(b){const s=e,n=t,a=Object.keys(s),r=Object.keys(n),o=a.length;if(o!==r.length)return!1;for(let c=0;c<o;c++){const i=a[c];if(!Object.prototype.hasOwnProperty.call(n,i)||!f(s[i],n[i]))return!1}return!0}return!1},d=(e,t)=>e==t;exports.deepEqual=f;exports.looseEqual=d;exports.strictEqual=g;
|
package/equal.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @returns `true` if the values are strictly equal, `false` otherwise.
|
|
8
8
|
* @public
|
|
9
9
|
*/
|
|
10
|
-
export declare
|
|
10
|
+
export declare const strictEqual: <A>(a: A, b: A) => boolean;
|
|
11
11
|
/**
|
|
12
12
|
* Checks if two values are equal by comparing their contents.
|
|
13
13
|
*
|
|
@@ -17,7 +17,7 @@ export declare function strictEqual<A>(a: A, b: A): boolean;
|
|
|
17
17
|
* @returns `true` if the values are deeply equal, `false` otherwise.
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
export declare
|
|
20
|
+
export declare const deepEqual: <A>(a: A, b: A) => boolean;
|
|
21
21
|
/**
|
|
22
22
|
* Checks if two values are loosely equal.
|
|
23
23
|
*
|
|
@@ -26,4 +26,4 @@ export declare function deepEqual<A>(a: A, b: A): boolean;
|
|
|
26
26
|
* @returns `true` if the values are loosely equal, `false` otherwise.
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
export declare
|
|
29
|
+
export declare const looseEqual: <T>(a: T, b: T) => boolean;
|
package/equal.js
CHANGED
|
@@ -1,66 +1,60 @@
|
|
|
1
|
-
|
|
2
|
-
return e === t || e !== e && t !== t;
|
|
3
|
-
}
|
|
4
|
-
function i(e, t) {
|
|
1
|
+
const O = (e, t) => e === t || e !== e && t !== t, i = (e, t) => {
|
|
5
2
|
if (O(e, t)) return !0;
|
|
6
3
|
if (e == null || t == null) return !1;
|
|
7
|
-
const
|
|
8
|
-
if (
|
|
9
|
-
if (
|
|
10
|
-
const
|
|
11
|
-
if (a !==
|
|
12
|
-
for (let
|
|
13
|
-
if (!i(
|
|
4
|
+
const l = Array.isArray(e), b = Array.isArray(t);
|
|
5
|
+
if (l !== b) return !1;
|
|
6
|
+
if (l) {
|
|
7
|
+
const s = e, n = t, a = s.length;
|
|
8
|
+
if (a !== n.length) return !1;
|
|
9
|
+
for (let r = 0; r < a; r++)
|
|
10
|
+
if (!i(s[r], n[r])) return !1;
|
|
14
11
|
return !0;
|
|
15
12
|
}
|
|
16
|
-
const
|
|
17
|
-
if (
|
|
18
|
-
if (
|
|
19
|
-
const
|
|
20
|
-
return +
|
|
13
|
+
const u = e instanceof Date, I = t instanceof Date;
|
|
14
|
+
if (u !== I) return !1;
|
|
15
|
+
if (u) {
|
|
16
|
+
const s = e, n = t;
|
|
17
|
+
return +s == +n;
|
|
21
18
|
}
|
|
22
19
|
const p = e instanceof Set, g = t instanceof Set;
|
|
23
20
|
if (p !== g) return !1;
|
|
24
21
|
if (p) {
|
|
25
|
-
const
|
|
26
|
-
if (
|
|
27
|
-
const a =
|
|
22
|
+
const s = e, n = t;
|
|
23
|
+
if (s.size !== n.size) return !1;
|
|
24
|
+
const a = s.keys();
|
|
28
25
|
for (; ; ) {
|
|
29
|
-
const
|
|
30
|
-
if (
|
|
31
|
-
if (!
|
|
26
|
+
const r = a.next();
|
|
27
|
+
if (r.done ?? !1) break;
|
|
28
|
+
if (!n.has(r.value)) return !1;
|
|
32
29
|
}
|
|
33
30
|
return !0;
|
|
34
31
|
}
|
|
35
32
|
const h = e instanceof Map, j = t instanceof Map;
|
|
36
33
|
if (h !== j) return !1;
|
|
37
34
|
if (h) {
|
|
38
|
-
const
|
|
39
|
-
if (
|
|
40
|
-
const
|
|
35
|
+
const s = e, n = t;
|
|
36
|
+
if (s.size !== n.size) return !1;
|
|
37
|
+
const r = s.keys();
|
|
41
38
|
for (; ; ) {
|
|
42
|
-
const
|
|
43
|
-
if (
|
|
44
|
-
if (!i(
|
|
39
|
+
const o = r.next();
|
|
40
|
+
if (o.done ?? !1) break;
|
|
41
|
+
if (!i(s.get(o.value), n.get(o.value))) return !1;
|
|
45
42
|
}
|
|
46
43
|
return !0;
|
|
47
44
|
}
|
|
48
45
|
const y = typeof e == "object";
|
|
49
46
|
if (y !== (typeof t == "object")) return !1;
|
|
50
47
|
if (y) {
|
|
51
|
-
const
|
|
52
|
-
if (
|
|
53
|
-
for (let
|
|
54
|
-
const c = a[
|
|
55
|
-
if (!Object.prototype.hasOwnProperty.call(
|
|
48
|
+
const s = e, n = t, a = Object.keys(s), r = Object.keys(n), o = a.length;
|
|
49
|
+
if (o !== r.length) return !1;
|
|
50
|
+
for (let f = 0; f < o; f++) {
|
|
51
|
+
const c = a[f];
|
|
52
|
+
if (!Object.prototype.hasOwnProperty.call(n, c) || !i(s[c], n[c])) return !1;
|
|
56
53
|
}
|
|
57
54
|
return !0;
|
|
58
55
|
}
|
|
59
56
|
return !1;
|
|
60
|
-
}
|
|
61
|
-
function M(e, t) {
|
|
62
|
-
return e == t;
|
|
63
|
-
}
|
|
57
|
+
}, M = (e, t) => e == t;
|
|
64
58
|
export {
|
|
65
59
|
i as deepEqual,
|
|
66
60
|
M as looseEqual,
|
package/error.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});class o extends Error{constructor(r="Operation aborted"){super(r),this.name="AbortError"}}class s extends Error{constructor(r="Missing implementation"){super(r),this.name="MissingImplementationError"}}class e extends Error{constructor(r){super(r),this.name="ParsingError"}}class n extends Error{constructor(r){super(r),this.name="ArgumentError"}}exports.AbortError=o;exports.ArgumentError=n;exports.MissingImplementationError=s;exports.ParsingError=e;
|
package/error.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents an error that is thrown when an operation is aborted.
|
|
3
|
+
*/
|
|
4
|
+
export declare class AbortError extends Error {
|
|
5
|
+
constructor(message?: string);
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Represents an error that is thrown when a required implementation is missing.
|
|
9
|
+
*/
|
|
10
|
+
export declare class MissingImplementationError extends Error {
|
|
11
|
+
constructor(message?: string);
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Represents an error that occurs during parsing.
|
|
15
|
+
*/
|
|
16
|
+
export declare class ParsingError extends Error {
|
|
17
|
+
constructor(message: string);
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Represents an error that occurs when an invalid argument is passed to a function or method.
|
|
21
|
+
*/
|
|
22
|
+
export declare class ArgumentError extends Error {
|
|
23
|
+
constructor(message: string);
|
|
24
|
+
}
|
package/error.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
class t extends Error {
|
|
2
|
+
constructor(r = "Operation aborted") {
|
|
3
|
+
super(r), this.name = "AbortError";
|
|
4
|
+
}
|
|
5
|
+
}
|
|
6
|
+
class o extends Error {
|
|
7
|
+
constructor(r = "Missing implementation") {
|
|
8
|
+
super(r), this.name = "MissingImplementationError";
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
class e extends Error {
|
|
12
|
+
constructor(r) {
|
|
13
|
+
super(r), this.name = "ParsingError";
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
class n extends Error {
|
|
17
|
+
constructor(r) {
|
|
18
|
+
super(r), this.name = "ArgumentError";
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
t as AbortError,
|
|
23
|
+
n as ArgumentError,
|
|
24
|
+
o as MissingImplementationError,
|
|
25
|
+
e as ParsingError
|
|
26
|
+
};
|
package/function.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=e=>e,o=e=>t=>(...r)=>e(t,...r),n=e=>{let t;return()=>(t===void 0&&(t=e()),t)};exports.curryLeft=o;exports.identity=i;exports.memoize=n;
|
package/function.d.ts
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
export declare function compose<A>(): (a: A) => A;
|
|
2
|
-
export declare function compose<A, B>(f1: (a: A) => B): (a: A) => B;
|
|
3
|
-
export declare function compose<A, B, C>(f1: (a: A) => B, f2: (b: B) => C): (a: A) => C;
|
|
4
|
-
export declare function compose<A, B, C, D>(f1: (a: A) => B, f2: (b: B) => C, f3: (c: C) => D): (a: A) => D;
|
|
5
|
-
export declare function compose<A, B, C, D, E>(f1: (a: A) => B, f2: (b: B) => C, f3: (c: C) => D, f4: (d: D) => E): (a: A) => E;
|
|
6
|
-
export declare function compose<A, B, C, D, E, F>(f1: (a: A) => B, f2: (b: B) => C, f3: (c: C) => D, f4: (d: D) => E, f5: (e: E) => F): (a: A) => F;
|
|
7
|
-
export declare function compose<A, B, C, D, E, F, G>(f1: (a: A) => B, f2: (b: B) => C, f3: (c: C) => D, f4: (d: D) => E, f5: (e: E) => F, f6: (f: F) => G): (a: A) => G;
|
|
8
1
|
/**
|
|
9
2
|
* Returns the input value as is.
|
|
10
3
|
*
|
|
@@ -13,7 +6,7 @@ export declare function compose<A, B, C, D, E, F, G>(f1: (a: A) => B, f2: (b: B)
|
|
|
13
6
|
* @typeParam T - The type of the input value.
|
|
14
7
|
* @public
|
|
15
8
|
*/
|
|
16
|
-
export declare
|
|
9
|
+
export declare const identity: <T>(v: T) => T;
|
|
17
10
|
/**
|
|
18
11
|
* Curries a function from left to right.
|
|
19
12
|
*
|
|
@@ -21,17 +14,7 @@ export declare function identity<T>(v: T): T;
|
|
|
21
14
|
* @returns A curried function.
|
|
22
15
|
* @public
|
|
23
16
|
*/
|
|
24
|
-
export declare
|
|
25
|
-
export declare function curryRight<A, B, C, D>(f: (a: A, b: B, c: C) => D): (a: A, b: B) => (c: C) => D;
|
|
26
|
-
export declare function curryRight<A, B, C, D, E>(f: (a: A, b: B, c: C, d: D) => E): (a: A, b: B, c: C) => (d: D) => E;
|
|
27
|
-
export declare function curryRight<A, B, C, D, E, F>(f: (a: A, b: B, c: C, d: D, e: E) => F): (a: A, b: B, c: C, d: D) => (e: E) => F;
|
|
28
|
-
export declare function curryRight<A, B, C, D, E, F, G>(f: (a: A, b: B, c: C, d: D, e: E, f: F) => G): (a: A, b: B, c: C, d: D, e: E) => (f: F) => G;
|
|
29
|
-
export declare function flip<A, B, C>(f: (a: A, b: B) => C): (b: B, a: A) => C;
|
|
30
|
-
export declare function flip<A, B, C, D>(f: (a: A, b: B, c: C) => D): (c: C, b: B, a: A) => D;
|
|
31
|
-
export declare function flip<A, B, C, D, E>(f: (a: A, b: B, c: C, d: D) => E): (d: D, c: C, b: B, a: A) => E;
|
|
32
|
-
export declare function flip<A, B, C, D, E>(f: (a: A, b: B, c: C, d: D) => E): (d: D, c: C, b: B, a: A) => E;
|
|
33
|
-
export declare function flip<A, B, C, D, E, F>(f: (a: A, b: B, c: C, d: D, e: E) => F): (e: E, d: D, c: C, b: B, a: A) => F;
|
|
34
|
-
export declare function flip<A, B, C, D, E, F, G>(f: (a: A, b: B, c: C, d: D, e: E, f: F) => G): (f: F, e: E, d: D, c: C, b: B, a: A) => G;
|
|
17
|
+
export declare const curryLeft: <A, Rest extends unknown[], Ret>(f: (a: A, ...rest: Rest) => Ret) => (a: A) => (...rest: Rest) => Ret;
|
|
35
18
|
/**
|
|
36
19
|
* Memoizes the result of a function and returns a new function that caches the result.
|
|
37
20
|
* The cached result is returned if available, otherwise the original function is called
|
|
@@ -41,4 +24,4 @@ export declare function flip<A, B, C, D, E, F, G>(f: (a: A, b: B, c: C, d: D, e:
|
|
|
41
24
|
* @returns A new function that caches the result of the original function.
|
|
42
25
|
* @public
|
|
43
26
|
*/
|
|
44
|
-
export declare
|
|
27
|
+
export declare const memoize: <T>(f: () => NonNullable<T>) => (() => NonNullable<T>);
|
package/function.js
CHANGED
|
@@ -1,30 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
return r;
|
|
6
|
-
}
|
|
7
|
-
function c(r) {
|
|
8
|
-
return (n) => (...e) => r(n, ...e);
|
|
9
|
-
}
|
|
10
|
-
function o(r) {
|
|
11
|
-
return (...n) => (
|
|
12
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
13
|
-
(e) => r(...n.concat([e]))
|
|
14
|
-
);
|
|
15
|
-
}
|
|
16
|
-
function f(r) {
|
|
17
|
-
return (...n) => r(...n.reverse());
|
|
18
|
-
}
|
|
19
|
-
function d(r) {
|
|
20
|
-
let n;
|
|
21
|
-
return () => (n === void 0 && (n = r()), n);
|
|
22
|
-
}
|
|
1
|
+
const n = (t) => t, o = (t) => (e) => (...r) => t(e, ...r), i = (t) => {
|
|
2
|
+
let e;
|
|
3
|
+
return () => (e === void 0 && (e = t()), e);
|
|
4
|
+
};
|
|
23
5
|
export {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
f as flip,
|
|
28
|
-
i as identity,
|
|
29
|
-
d as memoize
|
|
6
|
+
o as curryLeft,
|
|
7
|
+
n as identity,
|
|
8
|
+
i as memoize
|
|
30
9
|
};
|
package/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./array.cjs"),l=require("./async-result.cjs"),i=require("./bigint.cjs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./array.cjs"),l=require("./async-result.cjs"),i=require("./bigint.cjs"),a=require("./equal.cjs"),n=require("./function.cjs"),t=require("./number.cjs"),s=require("./object.cjs"),c=require("./promise.cjs"),p=require("./regexp.cjs"),o=require("./result-DzdZiQoR.cjs"),e=require("./string.cjs");exports.allElements=r.allElements;exports.anyElement=r.anyElement;exports.applyArrayDiffOperations=r.applyArrayDiffOperations;exports.areArraysEqual=r.areArraysEqual;exports.arrayDiffOperations=r.arrayDiffOperations;exports.arrayHasValues=r.arrayHasValues;exports.arrayHead=r.arrayHead;exports.arrayOfIterableIterator=r.arrayOfIterableIterator;exports.arrayTail=r.arrayTail;exports.compareArrays=r.compareArrays;exports.concatArrays=r.concatArrays;exports.createFilledArray=r.createFilledArray;exports.filterArray=r.filterArray;exports.filterMapArray=r.filterMapArray;exports.filterNullsFromArray=r.filterNullsFromArray;exports.flatMapArray=r.flatMapArray;exports.flattenArray=r.flattenArray;exports.foldLeftArray=r.foldLeftArray;exports.forEachElement=r.forEachElement;exports.generateArray=r.generateArray;exports.generateSequenceArray=r.generateSequenceArray;exports.isArrayEmpty=r.isArrayEmpty;exports.joinArrayWithConjunction=r.joinArrayWithConjunction;exports.mapArray=r.mapArray;exports.rankArray=r.rankArray;exports.removeAllFromArray=r.removeAllFromArray;exports.removeAllFromArrayByPredicate=r.removeAllFromArrayByPredicate;exports.removeOneFromArray=r.removeOneFromArray;exports.removeOneFromArrayByPredicate=r.removeOneFromArrayByPredicate;exports.sortArray=r.sortArray;exports.uniqueByPredicate=r.uniqueByPredicate;exports.uniquePrimitives=r.uniquePrimitives;exports.AsyncResult=l.AsyncResult;exports.biAbs=i.biAbs;exports.biCeilDiv=i.biCeilDiv;exports.biCompare=i.biCompare;exports.biFloorDiv=i.biFloorDiv;exports.biGcd=i.biGcd;exports.biIsEven=i.biIsEven;exports.biIsNegative=i.biIsNegative;exports.biIsOdd=i.biIsOdd;exports.biIsOne=i.biIsOne;exports.biIsPositive=i.biIsPositive;exports.biIsPrime=i.biIsPrime;exports.biIsZero=i.biIsZero;exports.biLcm=i.biLcm;exports.biMax=i.biMax;exports.biMin=i.biMin;exports.biNextPrime=i.biNextPrime;exports.biPow=i.biPow;exports.biPrevPrime=i.biPrevPrime;exports.deepEqual=a.deepEqual;exports.looseEqual=a.looseEqual;exports.strictEqual=a.strictEqual;exports.curryLeft=n.curryLeft;exports.identity=n.identity;exports.memoize=n.memoize;exports.EPSILON=t.EPSILON;exports.angleDifference=t.angleDifference;exports.ceilTo=t.ceilTo;exports.clamp=t.clamp;exports.clampInt=t.clampInt;exports.clampSym=t.clampSym;exports.compareNumbers=t.compareNumbers;exports.floorTo=t.floorTo;exports.interpolate=t.interpolate;exports.interpolateAngle=t.interpolateAngle;exports.interpolateAngleCCW=t.interpolateAngleCCW;exports.interpolateAngleCW=t.interpolateAngleCW;exports.interpolateWidestAngle=t.interpolateWidestAngle;exports.nearEqualAngles=t.nearEqualAngles;exports.nearEquals=t.nearEquals;exports.nearZero=t.nearZero;exports.root=t.root;exports.roundTo=t.roundTo;exports.sign=t.sign;exports.toHex=t.toHex;exports.widestAngleDifference=t.widestAngleDifference;exports.wrap=t.wrap;exports.wrapCircular=t.wrapCircular;exports.isEmptyObject=s.isEmptyObject;exports.isObject=s.isObject;exports.mergeObjects=s.mergeObjects;exports.objectKeys=s.objectKeys;exports.removeObjectFields=s.removeObjectFields;exports.sameObjectKeys=s.sameObjectKeys;exports.sleep=c.sleep;exports.mapRegExp=p.mapRegExp;exports.Result=o.Result;exports.Validation=o.Validation;exports.canonicalizeNewlines=e.canonicalizeNewlines;exports.capitalize=e.capitalize;exports.capitalizeWords=e.capitalizeWords;exports.chunkString=e.chunkString;exports.collapseText=e.collapseText;exports.compareCaseInsensitive=e.compareCaseInsensitive;exports.compareStrings=e.compareStrings;exports.containsAllText=e.containsAllText;exports.containsAllTextCaseInsensitive=e.containsAllTextCaseInsensitive;exports.containsAnyText=e.containsAnyText;exports.containsAnyTextCaseInsensitive=e.containsAnyTextCaseInsensitive;exports.countStringOccurrences=e.countStringOccurrences;exports.dasherize=e.dasherize;exports.decodeBase64=e.decodeBase64;exports.deleteFirstFromString=e.deleteFirstFromString;exports.deleteStringAfter=e.deleteStringAfter;exports.deleteStringBefore=e.deleteStringBefore;exports.deleteSubstring=e.deleteSubstring;exports.ellipsis=e.ellipsis;exports.ellipsisMiddle=e.ellipsisMiddle;exports.encodeBase64=e.encodeBase64;exports.filterCharcodes=e.filterCharcodes;exports.filterChars=e.filterChars;exports.humanize=e.humanize;exports.ifEmptyString=e.ifEmptyString;exports.isAlpha=e.isAlpha;exports.isAlphaNum=e.isAlphaNum;exports.isBreakingWhitespace=e.isBreakingWhitespace;exports.isDigitsOnly=e.isDigitsOnly;exports.isEmptyString=e.isEmptyString;exports.isLowerCase=e.isLowerCase;exports.isSpaceAt=e.isSpaceAt;exports.isUpperCase=e.isUpperCase;exports.jsQuote=e.jsQuote;exports.lowerCaseFirst=e.lowerCaseFirst;exports.lpad=e.lpad;exports.mapChars=e.mapChars;exports.quote=e.quote;exports.randomString=e.randomString;exports.randomStringSequence=e.randomStringSequence;exports.randomStringSequenceBase64=e.randomStringSequenceBase64;exports.repeatString=e.repeatString;exports.replaceAll=e.replaceAll;exports.reverseString=e.reverseString;exports.rpad=e.rpad;exports.smartQuote=e.smartQuote;exports.splitStringOnFirst=e.splitStringOnFirst;exports.splitStringOnLast=e.splitStringOnLast;exports.splitStringOnce=e.splitStringOnce;exports.stringContains=e.stringContains;exports.stringEndsWith=e.stringEndsWith;exports.stringEndsWithAny=e.stringEndsWithAny;exports.stringHasContent=e.stringHasContent;exports.stringHashCode=e.stringHashCode;exports.stringStartsWith=e.stringStartsWith;exports.stringStartsWithAny=e.stringStartsWithAny;exports.stringToCharcodes=e.stringToCharcodes;exports.stringToChars=e.stringToChars;exports.stringsDifferAtIndex=e.stringsDifferAtIndex;exports.substringAfter=e.substringAfter;exports.substringAfterLast=e.substringAfterLast;exports.substringBefore=e.substringBefore;exports.substringBeforeLast=e.substringBeforeLast;exports.surroundString=e.surroundString;exports.textContainsCaseInsensitive=e.textContainsCaseInsensitive;exports.textEndsWithAnyCaseInsensitive=e.textEndsWithAnyCaseInsensitive;exports.textEndsWithCaseInsensitive=e.textEndsWithCaseInsensitive;exports.textStartsWithAnyCaseInsensitive=e.textStartsWithAnyCaseInsensitive;exports.textStartsWithCaseInsensitive=e.textStartsWithCaseInsensitive;exports.textToLines=e.textToLines;exports.trimChars=e.trimChars;exports.trimCharsLeft=e.trimCharsLeft;exports.trimCharsRight=e.trimCharsRight;exports.trimStringSlice=e.trimStringSlice;exports.underscore=e.underscore;exports.upperCaseFirst=e.upperCaseFirst;exports.wrapColumns=e.wrapColumns;exports.wrapLine=e.wrapLine;
|