extra-utils 5.14.0 → 5.15.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/README.md +12 -0
- package/lib/number/index.d.ts +2 -0
- package/lib/number/index.js +2 -0
- package/lib/number/index.js.map +1 -1
- package/lib/number/remap-to-index.d.ts +2 -0
- package/lib/number/remap-to-index.js +8 -0
- package/lib/number/remap-to-index.js.map +1 -0
- package/lib/number/remap-to-weighted-index.d.ts +2 -0
- package/lib/number/remap-to-weighted-index.js +25 -0
- package/lib/number/remap-to-weighted-index.js.map +1 -0
- package/package.json +1 -1
- package/src/number/index.ts +2 -0
- package/src/number/remap-to-index.ts +20 -0
- package/src/number/remap-to-weighted-index.ts +31 -0
package/README.md
CHANGED
|
@@ -87,6 +87,18 @@ function remap(
|
|
|
87
87
|
, [newMin, newMax]: readonly [newMin: number, newMax: number]
|
|
88
88
|
): number
|
|
89
89
|
|
|
90
|
+
function remapToIndex(
|
|
91
|
+
value: number
|
|
92
|
+
, range: readonly [min: number, max: number]
|
|
93
|
+
, items: NonEmptyArray<unknown>
|
|
94
|
+
): number
|
|
95
|
+
|
|
96
|
+
function remapToWeightedIndex(
|
|
97
|
+
value: number
|
|
98
|
+
, range: [min: number, max: number]
|
|
99
|
+
, weights: NonEmptyArray<number>
|
|
100
|
+
): number
|
|
101
|
+
|
|
90
102
|
function lerp(
|
|
91
103
|
alpha: number
|
|
92
104
|
, [from, to]: readonly [from: number, to: number]
|
package/lib/number/index.d.ts
CHANGED
package/lib/number/index.js
CHANGED
|
@@ -5,5 +5,7 @@ export * from './is-nan.js';
|
|
|
5
5
|
export * from './is-number.js';
|
|
6
6
|
export * from './clamp.js';
|
|
7
7
|
export * from './remap.js';
|
|
8
|
+
export * from './remap-to-index.js';
|
|
9
|
+
export * from './remap-to-weighted-index.js';
|
|
8
10
|
export * from './lerp.js';
|
|
9
11
|
//# sourceMappingURL=index.js.map
|
package/lib/number/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/number/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/number/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAC1B,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { remap } from './remap.js';
|
|
2
|
+
export function remapToIndex(value, range, items) {
|
|
3
|
+
const index = Math.floor(remap(value, range, [0, items.length]));
|
|
4
|
+
return index === items.length
|
|
5
|
+
? items.length - 1
|
|
6
|
+
: index;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=remap-to-index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remap-to-index.js","sourceRoot":"","sources":["../../src/number/remap-to-index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAElC,MAAM,UAAU,YAAY,CAC1B,KAAa,EACb,KAA0C,EAC1C,KAA6B;IAE7B,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CACtB,KAAK,CACH,KAAK,EACL,KAAK,EACL,CAAC,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAClB,CACF,CAAA;IAED,OAAO,KAAK,KAAK,KAAK,CAAC,MAAM;QACxB,CAAC,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAClB,CAAC,CAAC,KAAK,CAAA;AACd,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { remap } from './remap.js';
|
|
2
|
+
import { remapToIndex } from './remap-to-index.js';
|
|
3
|
+
export function remapToWeightedIndex(value, range, weights) {
|
|
4
|
+
const newRangeMax = weights.reduce((acc, cur) => acc + Math.max(cur, 0));
|
|
5
|
+
if (newRangeMax === 0) {
|
|
6
|
+
return remapToIndex(value, range, weights);
|
|
7
|
+
}
|
|
8
|
+
else {
|
|
9
|
+
const newValue = remap(value, range, [0, newRangeMax]);
|
|
10
|
+
let remains = newRangeMax;
|
|
11
|
+
for (let i = weights.length; i--;) {
|
|
12
|
+
const weight = weights[i];
|
|
13
|
+
if (weight <= 0) {
|
|
14
|
+
continue;
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
remains -= weight;
|
|
18
|
+
if (newValue >= remains)
|
|
19
|
+
return i;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
throw new Error('Impossible route');
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=remap-to-weighted-index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remap-to-weighted-index.js","sourceRoot":"","sources":["../../src/number/remap-to-weighted-index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,MAAM,UAAU,oBAAoB,CAClC,KAAa,EACb,KAA0C,EAC1C,OAA8B;IAE9B,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IAExE,IAAI,WAAW,KAAK,CAAC,EAAE;QAErB,OAAO,YAAY,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,CAAC,CAAA;KAC3C;SAAM;QACL,MAAM,QAAQ,GAAG,KAAK,CAAC,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAA;QAEtD,IAAI,OAAO,GAAG,WAAW,CAAA;QACzB,KAAK,IAAI,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,GAAG;YACjC,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,MAAM,IAAI,CAAC,EAAE;gBACf,SAAQ;aACT;iBAAM;gBACL,OAAO,IAAI,MAAM,CAAA;gBACjB,IAAI,QAAQ,IAAI,OAAO;oBAAE,OAAO,CAAC,CAAA;aAClC;SACF;QAED,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAA;KACpC;AACH,CAAC"}
|
package/package.json
CHANGED
package/src/number/index.ts
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { NonEmptyArray } from 'justypes'
|
|
2
|
+
import { remap } from './remap.js'
|
|
3
|
+
|
|
4
|
+
export function remapToIndex(
|
|
5
|
+
value: number
|
|
6
|
+
, range: readonly [min: number, max: number]
|
|
7
|
+
, items: NonEmptyArray<unknown>
|
|
8
|
+
): number {
|
|
9
|
+
const index = Math.floor(
|
|
10
|
+
remap(
|
|
11
|
+
value
|
|
12
|
+
, range
|
|
13
|
+
, [0, items.length]
|
|
14
|
+
)
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
return index === items.length
|
|
18
|
+
? items.length - 1
|
|
19
|
+
: index
|
|
20
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { NonEmptyArray } from 'justypes'
|
|
2
|
+
import { remap } from './remap.js'
|
|
3
|
+
import { remapToIndex } from './remap-to-index.js'
|
|
4
|
+
|
|
5
|
+
export function remapToWeightedIndex(
|
|
6
|
+
value: number
|
|
7
|
+
, range: readonly [min: number, max: number]
|
|
8
|
+
, weights: NonEmptyArray<number>
|
|
9
|
+
): number {
|
|
10
|
+
const newRangeMax = weights.reduce((acc, cur) => acc + Math.max(cur, 0))
|
|
11
|
+
|
|
12
|
+
if (newRangeMax === 0) {
|
|
13
|
+
// 只有在所有权重都小于等于0的情况下会进入此路径, 所有权重此时都被视为1.
|
|
14
|
+
return remapToIndex(value, range, weights)
|
|
15
|
+
} else {
|
|
16
|
+
const newValue = remap(value, range, [0, newRangeMax])
|
|
17
|
+
|
|
18
|
+
let remains = newRangeMax
|
|
19
|
+
for (let i = weights.length; i--;) {
|
|
20
|
+
const weight = weights[i]
|
|
21
|
+
if (weight <= 0) {
|
|
22
|
+
continue
|
|
23
|
+
} else {
|
|
24
|
+
remains -= weight
|
|
25
|
+
if (newValue >= remains) return i
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
throw new Error('Impossible route')
|
|
30
|
+
}
|
|
31
|
+
}
|