Skip to content

Commit 7846e89

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents e7a0669 + 01f0ee9 commit 7846e89

File tree

8 files changed

+96
-93
lines changed

8 files changed

+96
-93
lines changed

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Abdelrahman Samir <[email protected]>
99
Abdul Kaium <[email protected]>
1010
Abhay Punia <[email protected]>
1111
Abhijit Raut <[email protected]>
12+
Abhishek G <[email protected]>
1213
Abhishek Jain <[email protected]>
1314
Adarsh Palaskar <[email protected]>
1415
Aditya Sapra <[email protected]>
@@ -199,6 +200,7 @@ Utkarsh <http://[email protected]>
199200
Utkarsh Raj <[email protected]>
200201
UtkershBasnet <[email protected]>
201202
Vaibhav Patel <[email protected]>
203+
Vansh Choudhary <[email protected]>
202204
Vara Rahul Rajana <[email protected]>
203205
Varad Gupta <[email protected]>
204206
Vinit Pandit <[email protected]>

lib/node_modules/@stdlib/ndarray/ctor/src/get.c

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @return status code
4040
*/
4141
int8_t stdlib_ndarray_get( const struct ndarray *arr, const int64_t *sub, void *out ) {
42-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
42+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
4343
if ( idx == NULL ) {
4444
return -1;
4545
}
@@ -60,7 +60,7 @@ int8_t stdlib_ndarray_get( const struct ndarray *arr, const int64_t *sub, void *
6060
* @return status code
6161
*/
6262
int8_t stdlib_ndarray_get_float64( const struct ndarray *arr, const int64_t *sub, double *out ) {
63-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
63+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
6464
if ( idx == NULL ) {
6565
return -1;
6666
}
@@ -81,7 +81,7 @@ int8_t stdlib_ndarray_get_float64( const struct ndarray *arr, const int64_t *sub
8181
* @return status code
8282
*/
8383
int8_t stdlib_ndarray_get_float32( const struct ndarray *arr, const int64_t *sub, float *out ) {
84-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
84+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
8585
if ( idx == NULL ) {
8686
return -1;
8787
}
@@ -102,7 +102,7 @@ int8_t stdlib_ndarray_get_float32( const struct ndarray *arr, const int64_t *sub
102102
* @return status code
103103
*/
104104
int8_t stdlib_ndarray_get_uint64( const struct ndarray *arr, const int64_t *sub, uint64_t *out ) {
105-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
105+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
106106
if ( idx == NULL ) {
107107
return -1;
108108
}
@@ -123,7 +123,7 @@ int8_t stdlib_ndarray_get_uint64( const struct ndarray *arr, const int64_t *sub,
123123
* @return status code
124124
*/
125125
int8_t stdlib_ndarray_get_int64( const struct ndarray *arr, const int64_t *sub, int64_t *out ) {
126-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
126+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
127127
if ( idx == NULL ) {
128128
return -1;
129129
}
@@ -144,7 +144,7 @@ int8_t stdlib_ndarray_get_int64( const struct ndarray *arr, const int64_t *sub,
144144
* @return status code
145145
*/
146146
int8_t stdlib_ndarray_get_uint32( const struct ndarray *arr, const int64_t *sub, uint32_t *out ) {
147-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
147+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
148148
if ( idx == NULL ) {
149149
return -1;
150150
}
@@ -165,7 +165,7 @@ int8_t stdlib_ndarray_get_uint32( const struct ndarray *arr, const int64_t *sub,
165165
* @return status code
166166
*/
167167
int8_t stdlib_ndarray_get_int32( const struct ndarray *arr, const int64_t *sub, int32_t *out ) {
168-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
168+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
169169
if ( idx == NULL ) {
170170
return -1;
171171
}
@@ -186,7 +186,7 @@ int8_t stdlib_ndarray_get_int32( const struct ndarray *arr, const int64_t *sub,
186186
* @return status code
187187
*/
188188
int8_t stdlib_ndarray_get_uint16( const struct ndarray *arr, const int64_t *sub, uint16_t *out ) {
189-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
189+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
190190
if ( idx == NULL ) {
191191
return -1;
192192
}
@@ -207,7 +207,7 @@ int8_t stdlib_ndarray_get_uint16( const struct ndarray *arr, const int64_t *sub,
207207
* @return status code
208208
*/
209209
int8_t stdlib_ndarray_get_int16( const struct ndarray *arr, const int64_t *sub, int16_t *out ) {
210-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
210+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
211211
if ( idx == NULL ) {
212212
return -1;
213213
}
@@ -228,7 +228,7 @@ int8_t stdlib_ndarray_get_int16( const struct ndarray *arr, const int64_t *sub,
228228
* @return status code
229229
*/
230230
int8_t stdlib_ndarray_get_uint8( const struct ndarray *arr, const int64_t *sub, uint8_t *out ) {
231-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
231+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
232232
if ( idx == NULL ) {
233233
return -1;
234234
}
@@ -249,7 +249,7 @@ int8_t stdlib_ndarray_get_uint8( const struct ndarray *arr, const int64_t *sub,
249249
* @return status code
250250
*/
251251
int8_t stdlib_ndarray_get_int8( const struct ndarray *arr, const int64_t *sub, int8_t *out ) {
252-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
252+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
253253
if ( idx == NULL ) {
254254
return -1;
255255
}
@@ -270,7 +270,7 @@ int8_t stdlib_ndarray_get_int8( const struct ndarray *arr, const int64_t *sub, i
270270
* @return status code
271271
*/
272272
int8_t stdlib_ndarray_get_complex128( const struct ndarray *arr, const int64_t *sub, stdlib_complex128_t *out ) {
273-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
273+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
274274
if ( idx == NULL ) {
275275
return -1;
276276
}
@@ -291,7 +291,7 @@ int8_t stdlib_ndarray_get_complex128( const struct ndarray *arr, const int64_t *
291291
* @return status code
292292
*/
293293
int8_t stdlib_ndarray_get_complex64( const struct ndarray *arr, const int64_t *sub, stdlib_complex64_t *out ) {
294-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
294+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
295295
if ( idx == NULL ) {
296296
return -1;
297297
}
@@ -312,7 +312,7 @@ int8_t stdlib_ndarray_get_complex64( const struct ndarray *arr, const int64_t *s
312312
* @return status code
313313
*/
314314
int8_t stdlib_ndarray_get_bool( const struct ndarray *arr, const int64_t *sub, bool *out ) {
315-
uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
315+
const uint8_t *idx = stdlib_ndarray_get_ptr( arr, sub );
316316
if ( idx == NULL ) {
317317
return -1;
318318
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
["Aadish Jain","Aarya Balwadkar","Aayush Khanna","Abdelrahman Samir","Abdul Kaium","Abhay Punia","Abhijit Raut","Abhishek Jain","Adarsh Palaskar","Aditya Sapra","Ahmed Atwa","Ahmed Kashkoush","Ahmed Khaled","Aksshay Balasubramanian","Aleksandr","Ali Salesi","AlyAbdelmoneim","Aman Bhansali","AmanBhadkariya","Amisha Chhajed","Amit Jimiwal","Anmol Sah","Annamalai Prabu","Anshu Kumar","Anshu Kumar","Anudeep Sanapala","Arihant Pal","Aryan Bhirud","AryanJ18","Athan Reines","Atharva Patil","Ayaka","Bhavishy Agrawal","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Hernandez Gomez","Daniel Killenberger","Daniel Yu","Debashis Maharana","Deep Trivedi","Deepak Singh","Deepak Singh","Desh Deepak Kant","Dev Goel","Dhanyabad behera","Dhruv Arvind Singh","Dhruvil Mehta","Dipjyoti Das","Divyansh Seth","Dominic Lim","Dominik Moritz","Dorrin Sotoudeh","EuniceSim142","Frank Kovacs","GK Bishnoi","GURU PRASAD SHARMA","Gaurav","Gautam Kaushik","Gautam sharma","GeoDaoyu","Girish Garg","Golden Kumar","Gunj Joshi","Gururaj Gurram","Harishchandra Reddy","Haroon Rasheed","Harsh","HarshaNP","Harshita Kalani","Hemang Choudhary","Hemant M Mehta","Hridyanshu","Jaimin Godhani","Jaison D Souza","Jalaj Kumar","James Gelok","Jay Soni","Jaysukh Makvana","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Justyn Shelby","Karan Anand","Karan Vasudevamurthy","Karan Yadav","Karthik Prakash","Kaushikgtm","Kavyansh-Bagdi","Kohantika Nath","Krishnam Agarwal","Krishnendu Das","Kshitij-Dale","Lalit Narayan Yadav","Lokesh Ranjan","Lovelin Dhoni J B","MANI","Mahfuza Humayra Mohona","Manik Sharma","Manvith M","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Bin Aftab","Mohammad Kaif","Momtchil Momtchev","Muhammad Haris","Muhammad Taaha Tariq","Muhmmad Saad","Naresh Jagadeesan","Naveen Kumar","Neeraj Pathak","NirvedMishra","Nishant Shinde","Nishant singh","Nishchay Rajput","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","Oneday12323","Ori Miles","Philipp Burckhardt","Pierre Forstmann","Prajjwal Bajpai","Prajwal Kulkarni","Pranav Goswami","Pranjal Jha","Prashant Kumar Yadav","PrathamBhamare","Pratik Singh","Pratyush Kumar Chouhan","Pravesh Kunwar","Priyansh Prajapati","Priyanshu Agarwal","Pulkit Gupta","Pushpendra Chandravanshi","Rahul Kumar","Raunak Kumar Gupta","Rejoan Sardar","Ricky Reusser","Ridam Garg","Rishav","Rishav Tarway","Robert Gislason","Roman Stetsyk","Rupa","Rutam Kathale","Ruthwik Chikoti","Ryan Seal","Rylan Yang","SAHIL KUMAR","SHIVAM YADAV","Sachin Raj","Sahil Goyal","Sai Avinash","Sai Srikar Dumpeti","Sanchay Ketan Sinha","Sarthak Paandey","Satyajeet Chavan","Saurabh Singh","Seyyed Parsa Neshaei","Shabareesh Shetty","Shashank Shekhar Singh","Shivam Ahir","Shivansh","Shraddheya Shendre","Shubh Mehta","Shubham Mishra","Siddhesh waje","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Stephannie Jiménez Gacha","Suhaib Ilahi","Suraj Kumar","Swapnil Hajare","Tanishq Ahuja","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Tushar Bhardwaj","Uday Kakade","Ujjwal Kirti","Utkarsh","Utkarsh Raj","UtkershBasnet","Vaibhav Patel","Vara Rahul Rajana","Varad Gupta","Vinit Pandit","Vivek Maurya","Xiaochuan Ye","Yaswanth Kosuru","Yernar Yergaziyev","Yugal Kaushik","Yuvi Mittal","deepak427","devshree-bhati","ditsu","ekambains","fadiothman22","iraandrushko","jsai28","lohithganni","olenkabilonizhka","pranav-1720","rahulrangers","rainn","rei2hu","zhanggy"]
1+
["Aadish Jain","Aarya Balwadkar","Aayush Khanna","Abdelrahman Samir","Abdul Kaium","Abhay Punia","Abhijit Raut","Abhishek G","Abhishek Jain","Adarsh Palaskar","Aditya Sapra","Ahmed Atwa","Ahmed Kashkoush","Ahmed Khaled","Aksshay Balasubramanian","Aleksandr","Ali Salesi","AlyAbdelmoneim","Aman Bhansali","AmanBhadkariya","Amisha Chhajed","Amit Jimiwal","Anmol Sah","Annamalai Prabu","Anshu Kumar","Anshu Kumar","Anudeep Sanapala","Arihant Pal","Aryan Bhirud","AryanJ18","Athan Reines","Atharva Patil","Ayaka","Bhavishy Agrawal","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Hernandez Gomez","Daniel Killenberger","Daniel Yu","Debashis Maharana","Deep Trivedi","Deepak Singh","Deepak Singh","Desh Deepak Kant","Dev Goel","Dhanyabad behera","Dhruv Arvind Singh","Dhruvil Mehta","Dipjyoti Das","Divyansh Seth","Dominic Lim","Dominik Moritz","Dorrin Sotoudeh","EuniceSim142","Frank Kovacs","GK Bishnoi","GURU PRASAD SHARMA","Gaurav","Gautam Kaushik","Gautam sharma","GeoDaoyu","Girish Garg","Golden Kumar","Gunj Joshi","Gururaj Gurram","Harishchandra Reddy","Haroon Rasheed","Harsh","HarshaNP","Harshita Kalani","Hemang Choudhary","Hemant M Mehta","Hridyanshu","Jaimin Godhani","Jaison D Souza","Jalaj Kumar","James Gelok","Jay Soni","Jaysukh Makvana","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","Justin Dennison","Justyn Shelby","Karan Anand","Karan Vasudevamurthy","Karan Yadav","Karthik Prakash","Kaushikgtm","Kavyansh-Bagdi","Kohantika Nath","Krishnam Agarwal","Krishnendu Das","Kshitij-Dale","Lalit Narayan Yadav","Lokesh Ranjan","Lovelin Dhoni J B","MANI","Mahfuza Humayra Mohona","Manik Sharma","Manvith M","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Bin Aftab","Mohammad Kaif","Momtchil Momtchev","Muhammad Haris","Muhammad Taaha Tariq","Muhmmad Saad","Naresh Jagadeesan","Naveen Kumar","Neeraj Pathak","NirvedMishra","Nishant Shinde","Nishant singh","Nishchay Rajput","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","Oneday12323","Ori Miles","Philipp Burckhardt","Pierre Forstmann","Pradyumn Prasad","Prajjwal Bajpai","Prajwal Kulkarni","Pranav Goswami","Pranjal Jha","Prashant Kumar Yadav","PrathamBhamare","Pratik Singh","Pratyush Kumar Chouhan","Pravesh Kunwar","Priyansh Prajapati","Priyanshu Agarwal","Pulkit Gupta","Pushpendra Chandravanshi","Rahul Kumar","Raunak Kumar Gupta","Rejoan Sardar","Ricky Reusser","Ridam Garg","Rishav","Rishav Tarway","Robert Gislason","Roman Stetsyk","Rupa","Rutam Kathale","Ruthwik Chikoti","Ryan Seal","Rylan Yang","SAHIL KUMAR","SHIVAM YADAV","Sachin Raj","Sahil Goyal","Sai Avinash","Sai Srikar Dumpeti","Sanchay Ketan Sinha","Sarthak Paandey","Satyajeet Chavan","Saurabh Singh","Seyyed Parsa Neshaei","Shabareesh Shetty","Shashank Shekhar Singh","Shivam Ahir","Shivansh","Shraddheya Shendre","Shubh Mehta","Shubham Mishra","Siddhesh waje","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Stephannie Jiménez Gacha","Suhaib Ilahi","Suraj Kumar","Swapnil Hajare","Tanishq Ahuja","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Tushar Bhardwaj","Uday Kakade","Ujjwal Kirti","Utkarsh","Utkarsh Raj","UtkershBasnet","Vaibhav Patel","Vansh Choudhary","Vara Rahul Rajana","Varad Gupta","Vinit Pandit","Vivek Maurya","Xiaochuan Ye","Yaswanth Kosuru","Yernar Yergaziyev","Yugal Kaushik","Yuvi Mittal","deepak427","devshree-bhati","ditsu","ekambains","fadiothman22","iraandrushko","jsai28","lohithganni","olenkabilonizhka","pranav-1720","rahulrangers","rainn","rei2hu","zhanggy"]

lib/node_modules/@stdlib/stats/base/dists/binomial/entropy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ logEachMap( 'n: %0.4f, p: %0.4f, H(X;n,p): %0.4f', n, p, entropy );
166166

167167
#### stdlib_base_dists_binomial_entropy( n, p )
168168

169-
Evaluates the [entropy][entropy] of a [Binomial][binomial-distribution] distribution with `n` the number of trials and `p` the success probability.
169+
Evaluates the [entropy][entropy] of a [binomial][binomial-distribution] distribution with `n` the number of trials and `p` the success probability.
170170

171171
```c
172172
double out = stdlib_base_dists_binomial_entropy( 20, 0.1 );

lib/node_modules/@stdlib/stats/levene-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var leveneTest = require( '@stdlib/stats/levene-test' );
4040

4141
#### leveneTest( x\[, y, ..., z]\[, opts] )
4242

43-
Calculates Levene's test for input arrays `x`, `y`, ..., `z` holding numeric observations.
43+
Calculates Levene's test for input arrays `x`, `y`, ..., `z` holding numeric observations.
4444

4545
```javascript
4646
// Data from Hollander & Wolfe (1973), p. 116:

lib/node_modules/@stdlib/strided/base/cmap/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ static double benchmark( int iterations, int len ) {
118118
}
119119
t = tic();
120120
for ( i = 0; i < iterations; i++ ) {
121+
// cppcheck-suppress uninitvar
121122
stdlib_strided_cmap( len, x, 1, y, 1, identity );
122123
if ( y[ i%len ] != y[ i%len ] ) {
123124
printf( "should not return NaN\n" );
Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"options": {},
3-
"fields": [
4-
{
5-
"field": "src",
6-
"resolve": true,
7-
"relative": true
8-
},
9-
{
10-
"field": "include",
11-
"resolve": true,
12-
"relative": true
13-
},
14-
{
15-
"field": "libraries",
16-
"resolve": false,
17-
"relative": false
18-
},
19-
{
20-
"field": "libpath",
21-
"resolve": true,
22-
"relative": false
23-
}
24-
],
25-
"confs": [
26-
{
27-
"src": [
28-
"./src/main.c"
29-
],
30-
"include": [
31-
"./include"
32-
],
33-
"libraries": [],
34-
"libpath": [],
35-
"dependencies": [
36-
"@stdlib/strided/base/function-object",
37-
"@stdlib/strided/base/binary",
38-
"@stdlib/strided/dtypes",
39-
"@stdlib/strided/napi/addon-arguments"
40-
]
41-
}
42-
]
2+
"options": {},
3+
"fields": [
4+
{
5+
"field": "src",
6+
"resolve": true,
7+
"relative": true
8+
},
9+
{
10+
"field": "include",
11+
"resolve": true,
12+
"relative": true
13+
},
14+
{
15+
"field": "libraries",
16+
"resolve": false,
17+
"relative": false
18+
},
19+
{
20+
"field": "libpath",
21+
"resolve": true,
22+
"relative": false
23+
}
24+
],
25+
"confs": [
26+
{
27+
"src": [
28+
"./src/main.c"
29+
],
30+
"include": [
31+
"./include"
32+
],
33+
"libraries": [],
34+
"libpath": [],
35+
"dependencies": [
36+
"@stdlib/strided/base/function-object",
37+
"@stdlib/strided/base/binary",
38+
"@stdlib/strided/dtypes",
39+
"@stdlib/strided/napi/addon-arguments"
40+
]
41+
}
42+
]
4343
}
Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
{
2-
"1": 1,
3-
"jan": 1,
4-
"january": 1,
5-
"2": 2,
6-
"feb": 2,
7-
"february": 2,
8-
"3": 3,
9-
"mar": 3,
10-
"march": 3,
11-
"4": 4,
12-
"apr": 4,
13-
"april": 4,
14-
"5": 5,
15-
"may": 5,
16-
"6": 6,
17-
"jun": 6,
18-
"june": 6,
19-
"7": 7,
20-
"jul": 7,
21-
"july": 7,
22-
"8": 8,
23-
"aug": 8,
24-
"august": 8,
25-
"9": 9,
26-
"sep": 9,
27-
"september": 9,
28-
"10": 10,
29-
"oct": 10,
30-
"october": 10,
31-
"11": 11,
32-
"nov": 11,
33-
"november": 11,
34-
"12": 12,
35-
"dec": 12,
36-
"december": 12
2+
"1": 1,
3+
"jan": 1,
4+
"january": 1,
5+
"2": 2,
6+
"feb": 2,
7+
"february": 2,
8+
"3": 3,
9+
"mar": 3,
10+
"march": 3,
11+
"4": 4,
12+
"apr": 4,
13+
"april": 4,
14+
"5": 5,
15+
"may": 5,
16+
"6": 6,
17+
"jun": 6,
18+
"june": 6,
19+
"7": 7,
20+
"jul": 7,
21+
"july": 7,
22+
"8": 8,
23+
"aug": 8,
24+
"august": 8,
25+
"9": 9,
26+
"sep": 9,
27+
"september": 9,
28+
"10": 10,
29+
"oct": 10,
30+
"october": 10,
31+
"11": 11,
32+
"nov": 11,
33+
"november": 11,
34+
"12": 12,
35+
"dec": 12,
36+
"december": 12
3737
}

0 commit comments

Comments
 (0)