@oliversalzburg/js-utils 0.0.23-dev.4 → 0.0.23-dev.6
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/math/core.d.ts +4 -4
- package/math/core.js +7 -7
- package/math/core.js.map +1 -1
- package/nil.d.ts +15 -6
- package/nil.js +13 -4
- package/nil.js.map +1 -1
- package/package.json +1 -1
package/math/core.d.ts
CHANGED
|
@@ -9,28 +9,28 @@ export declare const TWO_PI: number;
|
|
|
9
9
|
* @returns The degrees in radians.
|
|
10
10
|
* @group Math
|
|
11
11
|
*/
|
|
12
|
-
export declare const
|
|
12
|
+
export declare const degreesToRadians: (degrees: number) => number;
|
|
13
13
|
/**
|
|
14
14
|
* Convertrs the radians to degrees.
|
|
15
15
|
* @param radians - The radians to convert to degrees.
|
|
16
16
|
* @returns The radians as degrees.
|
|
17
17
|
* @group Math
|
|
18
18
|
*/
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const radiansToDegrees: (radians: number) => number;
|
|
20
20
|
/**
|
|
21
21
|
* Calculates the sine for a given degree value.
|
|
22
22
|
* @param value - The value in degrees to calculate the sine for.
|
|
23
23
|
* @returns The sine for the given value.
|
|
24
24
|
* @group Math
|
|
25
25
|
*/
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const sinDegrees: (value: number) => number;
|
|
27
27
|
/**
|
|
28
28
|
* Calculates the cosine for a given degree value.
|
|
29
29
|
* @param value - The value in degrees to calculate the cosine for.
|
|
30
30
|
* @returns The cosine for the given value.
|
|
31
31
|
* @group Math
|
|
32
32
|
*/
|
|
33
|
-
export declare const
|
|
33
|
+
export declare const cosDegrees: (value: number) => number;
|
|
34
34
|
/**
|
|
35
35
|
* Calculates the distance between two vectors.
|
|
36
36
|
* @param x1 - The X component of the first vector.
|
package/math/core.js
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
* `PI` times 2.
|
|
3
3
|
* @group Math
|
|
4
4
|
*/
|
|
5
|
-
export const TWO_PI = /*
|
|
5
|
+
export const TWO_PI = /* __PURE__ */ Math.PI * 2;
|
|
6
6
|
/**
|
|
7
7
|
* Converts the degrees to radians.
|
|
8
8
|
* @param degrees - The degrees to convert to radians.
|
|
9
9
|
* @returns The degrees in radians.
|
|
10
10
|
* @group Math
|
|
11
11
|
*/
|
|
12
|
-
export const
|
|
12
|
+
export const degreesToRadians = (degrees) => {
|
|
13
13
|
return degrees * (Math.PI / 180);
|
|
14
14
|
};
|
|
15
15
|
/**
|
|
@@ -18,7 +18,7 @@ export const deg2rad = (degrees) => {
|
|
|
18
18
|
* @returns The radians as degrees.
|
|
19
19
|
* @group Math
|
|
20
20
|
*/
|
|
21
|
-
export const
|
|
21
|
+
export const radiansToDegrees = (radians) => {
|
|
22
22
|
return radians * (180 / Math.PI);
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
@@ -27,8 +27,8 @@ export const rad2deg = (radians) => {
|
|
|
27
27
|
* @returns The sine for the given value.
|
|
28
28
|
* @group Math
|
|
29
29
|
*/
|
|
30
|
-
export const
|
|
31
|
-
return Math.sin(
|
|
30
|
+
export const sinDegrees = (value) => {
|
|
31
|
+
return Math.sin(degreesToRadians(value));
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
34
|
* Calculates the cosine for a given degree value.
|
|
@@ -36,8 +36,8 @@ export const sinDeg = (value) => {
|
|
|
36
36
|
* @returns The cosine for the given value.
|
|
37
37
|
* @group Math
|
|
38
38
|
*/
|
|
39
|
-
export const
|
|
40
|
-
return Math.cos(
|
|
39
|
+
export const cosDegrees = (value) => {
|
|
40
|
+
return Math.cos(degreesToRadians(value));
|
|
41
41
|
};
|
|
42
42
|
/**
|
|
43
43
|
* Calculates the distance between two vectors.
|
package/math/core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.js","sourceRoot":"","sources":["../../source/math/core.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,
|
|
1
|
+
{"version":3,"file":"core.js","sourceRoot":"","sources":["../../source/math/core.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,cAAc,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;AAEjD;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,OAAe,EAAE,EAAE;IAClD,OAAO,OAAO,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,GAAG,CAAC,CAAC;AACnC,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,OAAe,EAAE,EAAE;IAClD,OAAO,OAAO,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC;AACnC,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE;IAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAa,EAAE,EAAE;IAC1C,OAAO,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC;AAC3C,CAAC,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,EAAU,EAAE,EAAU,EAAE,EAAU,EAAE,EAAU,EAAE,EAAE;IACzE,MAAM,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,MAAM,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC;IACtB,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC,CAAC;AAClD,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,KAAa,EAAE,EAAE;IACrC,IAAI,CAAC,KAAK,KAAK,EAAE;QACf,OAAO,CAAC,CAAC;KACV,CAAC,oBAAoB;IACtB,IAAI,CAAC,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,8BAA8B;IACrD,IAAI,EAAE,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAC7B,OAAO,EAAE,GAAG,CAAC,EAAE;QACb,CAAC,GAAG,EAAE,CAAC;QACP,EAAE,GAAG,CAAC,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;KAC1B;IACD,OAAO,CAAC,CAAC;AACX,CAAC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,KAAa,EAAE,EAAE;IACzC,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,CAAC;AACrC,CAAC,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,KAAa,EAAE,KAAa,EAAE,IAAY,EAAU,EAAE;IAC1E,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;AAChD,CAAC,CAAC"}
|
package/nil.d.ts
CHANGED
|
@@ -15,21 +15,26 @@ export type Maybe<T> = T | Nil;
|
|
|
15
15
|
* Check if something is nil.
|
|
16
16
|
* Can be used as a typeguard.
|
|
17
17
|
* @param subject - The subject that could be nil.
|
|
18
|
+
* @typeParam TSubject - The type of the subject.
|
|
18
19
|
* @returns `true` if the subject is nil, `false` otherwise.
|
|
20
|
+
* @group Nullability
|
|
19
21
|
*/
|
|
20
|
-
export declare function isNil<
|
|
22
|
+
export declare function isNil<TSubject>(subject: Maybe<TSubject>): subject is Nil;
|
|
21
23
|
/**
|
|
22
24
|
* Check if something is a concrete value of the given type.
|
|
23
25
|
* Can be used as a typeguard.
|
|
24
|
-
* @param
|
|
25
|
-
* @param
|
|
26
|
+
* @param subject - The subject that could be nil.
|
|
27
|
+
* @param Prototype - The prototype to check against.
|
|
28
|
+
* @typeParam TSubject - The type to check against.
|
|
26
29
|
* @returns `true` if the input element matches the given type,
|
|
27
30
|
* `false` otherwise.
|
|
31
|
+
* @group Nullability
|
|
28
32
|
*/
|
|
29
|
-
export declare function is<
|
|
33
|
+
export declare function is<TSubject>(subject: Maybe<TSubject>, Prototype: ConstructorOf<TSubject>): subject is TSubject;
|
|
30
34
|
/**
|
|
31
35
|
* Thrown when an unexpected nil value was encountered.
|
|
32
36
|
* @group Errors
|
|
37
|
+
* @group Nullability
|
|
33
38
|
*/
|
|
34
39
|
export declare class UnexpectedNilError extends Error {
|
|
35
40
|
/**
|
|
@@ -42,13 +47,17 @@ export declare class UnexpectedNilError extends Error {
|
|
|
42
47
|
* Ensure that the passed subject is not nil; throw otherwise.
|
|
43
48
|
* @param subject - A subject that is possible nil.
|
|
44
49
|
* @param errorMessage - An optional error message to throw when the subject is nil.
|
|
50
|
+
* @typeParam TSubject - The type of the subject.
|
|
45
51
|
* @returns The subject, if it isn't nil.
|
|
46
52
|
* @throws {@linkcode UnexpectedNilError} When the subject is nil.
|
|
53
|
+
* @group Nullability
|
|
47
54
|
*/
|
|
48
|
-
export declare function mustExist<
|
|
55
|
+
export declare function mustExist<TSubject>(subject: Maybe<TSubject>, errorMessage?: string): TSubject;
|
|
49
56
|
/**
|
|
50
57
|
* Ensure that the passed subject is not nil; throw otherwise.
|
|
51
58
|
* @param subject - A subject that is possibly nil.
|
|
59
|
+
* @typeParam TSubject - The type of the subject.
|
|
52
60
|
* @throws {@linkcode UnexpectedNilError} When the subject is nil.
|
|
61
|
+
* @group Nullability
|
|
53
62
|
*/
|
|
54
|
-
export declare function assertExists<
|
|
63
|
+
export declare function assertExists<TSubject>(subject: Maybe<TSubject>): asserts subject is TSubject;
|
package/nil.js
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
* Check if something is nil.
|
|
3
3
|
* Can be used as a typeguard.
|
|
4
4
|
* @param subject - The subject that could be nil.
|
|
5
|
+
* @typeParam TSubject - The type of the subject.
|
|
5
6
|
* @returns `true` if the subject is nil, `false` otherwise.
|
|
7
|
+
* @group Nullability
|
|
6
8
|
*/
|
|
7
9
|
export function isNil(subject) {
|
|
8
10
|
return subject === null || subject === undefined;
|
|
@@ -10,17 +12,20 @@ export function isNil(subject) {
|
|
|
10
12
|
/**
|
|
11
13
|
* Check if something is a concrete value of the given type.
|
|
12
14
|
* Can be used as a typeguard.
|
|
13
|
-
* @param
|
|
14
|
-
* @param
|
|
15
|
+
* @param subject - The subject that could be nil.
|
|
16
|
+
* @param Prototype - The prototype to check against.
|
|
17
|
+
* @typeParam TSubject - The type to check against.
|
|
15
18
|
* @returns `true` if the input element matches the given type,
|
|
16
19
|
* `false` otherwise.
|
|
20
|
+
* @group Nullability
|
|
17
21
|
*/
|
|
18
|
-
export function is(
|
|
19
|
-
return !isNil(
|
|
22
|
+
export function is(subject, Prototype) {
|
|
23
|
+
return !isNil(subject) && subject instanceof Prototype;
|
|
20
24
|
}
|
|
21
25
|
/**
|
|
22
26
|
* Thrown when an unexpected nil value was encountered.
|
|
23
27
|
* @group Errors
|
|
28
|
+
* @group Nullability
|
|
24
29
|
*/
|
|
25
30
|
export class UnexpectedNilError extends Error {
|
|
26
31
|
/**
|
|
@@ -35,8 +40,10 @@ export class UnexpectedNilError extends Error {
|
|
|
35
40
|
* Ensure that the passed subject is not nil; throw otherwise.
|
|
36
41
|
* @param subject - A subject that is possible nil.
|
|
37
42
|
* @param errorMessage - An optional error message to throw when the subject is nil.
|
|
43
|
+
* @typeParam TSubject - The type of the subject.
|
|
38
44
|
* @returns The subject, if it isn't nil.
|
|
39
45
|
* @throws {@linkcode UnexpectedNilError} When the subject is nil.
|
|
46
|
+
* @group Nullability
|
|
40
47
|
*/
|
|
41
48
|
export function mustExist(subject, errorMessage) {
|
|
42
49
|
if (isNil(subject)) {
|
|
@@ -47,7 +54,9 @@ export function mustExist(subject, errorMessage) {
|
|
|
47
54
|
/**
|
|
48
55
|
* Ensure that the passed subject is not nil; throw otherwise.
|
|
49
56
|
* @param subject - A subject that is possibly nil.
|
|
57
|
+
* @typeParam TSubject - The type of the subject.
|
|
50
58
|
* @throws {@linkcode UnexpectedNilError} When the subject is nil.
|
|
59
|
+
* @group Nullability
|
|
51
60
|
*/
|
|
52
61
|
export function assertExists(subject) {
|
|
53
62
|
if (isNil(subject)) {
|
package/nil.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nil.js","sourceRoot":"","sources":["../source/nil.ts"],"names":[],"mappings":"AAgBA
|
|
1
|
+
{"version":3,"file":"nil.js","sourceRoot":"","sources":["../source/nil.ts"],"names":[],"mappings":"AAgBA;;;;;;;GAOG;AACH,MAAM,UAAU,KAAK,CAAW,OAAwB;IACtD,OAAO,OAAO,KAAK,IAAI,IAAI,OAAO,KAAK,SAAS,CAAC;AACnD,CAAC;AAED;;;;;;;;;GASG;AACH,MAAM,UAAU,EAAE,CAChB,OAAwB,EACxB,SAAkC;IAElC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,OAAO,YAAY,SAAS,CAAC;AACzD,CAAC;AAED;;;;GAIG;AACH,MAAM,OAAO,kBAAmB,SAAQ,KAAK;IAC3C;;;OAGG;IACH,YAAY,OAAO,GAAG,sBAAsB;QAC1C,KAAK,CAAC,OAAO,CAAC,CAAC;IACjB,CAAC;CACF;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,SAAS,CAAW,OAAwB,EAAE,YAAqB;IACjF,IAAI,KAAK,CAAC,OAAO,CAAC,EAAE;QAClB,MAAM,IAAI,kBAAkB,CAAC,YAAY,CAAC,CAAC;KAC5C;IACD,OAAO,OAAO,CAAC;AACjB,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,YAAY,CAAW,OAAwB;IAC7D,IAAI,KAAK,CAAC,OAAO,CAAC,EAAE;QAClB,MAAM,IAAI,kBAAkB,EAAE,CAAC;KAChC;AACH,CAAC"}
|
package/package.json
CHANGED