|
23 | 23 | "./clz32": "./src/clz32.ts", |
24 | 24 | "./cos": "./src/cos.ts", |
25 | 25 | "./cosh": "./src/cosh.ts", |
| 26 | + "./e": "./src/constants/e.ts", |
| 27 | + "./epsilon": "./src/constants/epsilon.ts", |
26 | 28 | "./exp": "./src/exp.ts", |
27 | 29 | "./expm1": "./src/expm1.ts", |
28 | 30 | "./f16round": "./src/f16round.ts", |
|
32 | 34 | "./ieee754": "./src/ieee754.ts", |
33 | 35 | "./imul": "./src/imul.ts", |
34 | 36 | "./infinity": "./src/guards/infinity.ts", |
| 37 | + "./ln2": "./src/constants/ln2.ts", |
| 38 | + "./ln10": "./src/constants/ln10.ts", |
35 | 39 | "./log": "./src/log.ts", |
36 | 40 | "./log1p": "./src/log1p.ts", |
37 | 41 | "./log2": "./src/log2.ts", |
| 42 | + "./log2e": "./src/constants/log2e.ts", |
38 | 43 | "./log10": "./src/log10.ts", |
| 44 | + "./log10e": "./src/constants/log10e.ts", |
39 | 45 | "./max": "./src/max.ts", |
| 46 | + "./max-safe-integer": "./src/constants/max_safe_integer.ts", |
| 47 | + "./max-value": "./src/constants/max_value.ts", |
40 | 48 | "./min": "./src/min.ts", |
| 49 | + "./min-safe-integer": "./src/constants/min_safe_integer.ts", |
| 50 | + "./min-value": "./src/constants/min_value.ts", |
41 | 51 | "./nan": "./src/guards/nan.ts", |
42 | 52 | "./pi": "./src/constants/pi.ts", |
43 | 53 | "./pow": "./src/pow.ts", |
|
47 | 57 | "./sin": "./src/sin.ts", |
48 | 58 | "./sinh": "./src/sinh.ts", |
49 | 59 | "./sqrt": "./src/sqrt.ts", |
| 60 | + "./sqrt1_2": "./src/constants/sqrt1_2.ts", |
| 61 | + "./sqrt1-2": "./src/constants/sqrt1_2.ts", |
| 62 | + "./sqrt2": "./src/constants/sqrt2.ts", |
50 | 63 | "./tan": "./src/tan.ts", |
51 | 64 | "./tanh": "./src/tanh.ts", |
52 | 65 | "./trunc": "./src/trunc.ts", |
|
67 | 80 | "./constants/pi": "./src/constants/pi.ts", |
68 | 81 | "./constants/positive-infinity": "./src/constants/positive_infinity.ts", |
69 | 82 | "./constants/positive-zero": "./src/constants/positive_zero.ts", |
| 83 | + "./constants/sqrt1_2": "./src/constants/sqrt1_2.ts", |
70 | 84 | "./constants/sqrt1-2": "./src/constants/sqrt1_2.ts", |
71 | 85 | "./constants/sqrt2": "./src/constants/sqrt2.ts", |
72 | 86 | "./float16": "./src/float16/mod.ts", |
73 | | - "./float16/encode": "./src/float16/encode.ts", |
| 87 | + "./float16/constants": "./src/float16/constants.ts", |
74 | 88 | "./float16/decode": "./src/float16/decode.ts", |
| 89 | + "./float16/encode": "./src/float16/encode.ts", |
| 90 | + "./float16/guards": "./src/float16/guards.ts", |
75 | 91 | "./float16/round": "./src/float16/round.ts", |
76 | 92 | "./float32": "./src/float32/mod.ts", |
77 | | - "./float32/encode": "./src/float32/encode.ts", |
| 93 | + "./float32/constants": "./src/float32/constants.ts", |
78 | 94 | "./float32/decode": "./src/float32/decode.ts", |
| 95 | + "./float32/encode": "./src/float32/encode.ts", |
| 96 | + "./float32/guards": "./src/float32/guards.ts", |
79 | 97 | "./float32/round": "./src/float32/round.ts", |
80 | 98 | "./guards": "./src/guards/mod.ts", |
81 | 99 | "./guards/finite": "./src/guards/finite.ts", |
82 | 100 | "./guards/infinity": "./src/guards/infinity.ts", |
83 | | - "./guards/positive-infinity": "./src/guards/positive_infinity.ts", |
| 101 | + "./guards/integer": "./src/guards/integer.ts", |
| 102 | + "./guards/nan": "./src/guards/nan.ts", |
84 | 103 | "./guards/negative-infinity": "./src/guards/negative_infinity.ts", |
85 | 104 | "./guards/negative-zero": "./src/guards/negative_zero.ts", |
| 105 | + "./guards/positive-infinity": "./src/guards/positive_infinity.ts", |
86 | 106 | "./guards/positive-zero": "./src/guards/positive_zero.ts", |
87 | | - "./guards/integer": "./src/guards/integer.ts", |
88 | 107 | "./guards/safe-integer": "./src/guards/safe_integer.ts", |
89 | | - "./guards/nan": "./src/guards/nan.ts", |
90 | 108 | "./is/finite": "./src/guards/finite.ts", |
91 | 109 | "./is/infinity": "./src/guards/infinity.ts", |
92 | | - "./is/positive-infinity": "./src/guards/positive_infinity.ts", |
| 110 | + "./is/integer": "./src/guards/integer.ts", |
| 111 | + "./is/nan": "./src/guards/nan.ts", |
93 | 112 | "./is/negative-infinity": "./src/guards/negative_infinity.ts", |
94 | 113 | "./is/negative-zero": "./src/guards/negative_zero.ts", |
95 | | - "./is/integer": "./src/guards/integer.ts", |
| 114 | + "./is/positive-infinity": "./src/guards/positive_infinity.ts", |
| 115 | + "./is/positive-zero": "./src/guards/positive_zero.ts", |
96 | 116 | "./is/safe-integer": "./src/guards/safe_integer.ts", |
97 | | - "./is/nan": "./src/guards/nan.ts", |
98 | 117 | "./types": "./src/types/mod.ts", |
99 | 118 | "./types/finite": "./src/types/finite.ts", |
100 | 119 | "./types/float": "./src/types/float.ts", |
|
0 commit comments