Skip to content

Commit 4afbe55

Browse files
committed
Auto-generated commit
1 parent f2c03e9 commit 4afbe55

File tree

6 files changed

+1440
-8592
lines changed

6 files changed

+1440
-8592
lines changed

CHANGELOG.md

Lines changed: 1385 additions & 8587 deletions
Large diffs are not rendered by default.

CONTRIBUTORS

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,15 @@ GK Bishnoi <[email protected]>
5454
GURU PRASAD SHARMA <[email protected]>
5555
5656
Gautam sharma <[email protected]>
57+
Girish Garg <[email protected]>
5758
Golden Kumar <[email protected]>
5859
Gunj Joshi <[email protected]>
5960
Gururaj Gurram <[email protected]>
6061
Haroon Rasheed <[email protected]>
61-
Harsh <[email protected].com>
62+
Harsh <harshyadav6078@gmail.com>
6263
6364
Harshita Kalani <[email protected]>
65+
Hemang Choudhary <[email protected]>
6466
Hemant M Mehta <[email protected]>
6567
Hridyanshu <[email protected]>
6668
Jaimin Godhani <[email protected]>
@@ -86,6 +88,7 @@ Kohantika Nath <[email protected]>
8688
Krishnam Agarwal <[email protected]>
8789
Krishnendu Das <[email protected]>
8890
Kshitij-Dale <[email protected]>
91+
Lalit Narayan Yadav <[email protected]>
8992
Lovelin Dhoni J B <[email protected]>
9093
9194
Mahfuza Humayra Mohona <[email protected]>
@@ -143,6 +146,7 @@ Ryan Seal <[email protected]>
143146
Rylan Yang <[email protected]>
144147
SAHIL KUMAR <[email protected]>
145148
SHIVAM YADAV <[email protected]>
149+
Sachin Raj <[email protected]>
146150
Sahil Goyal <[email protected]>
147151
Sai Avinash <[email protected]>
148152
Sai Srikar Dumpeti <[email protected]>
@@ -167,10 +171,12 @@ Tanishq Ahuja <[email protected]>
167171
Tirtadwipa Manunggal <[email protected]>
168172
Tudor Pagu <[email protected]>
169173
Tufailahmed Bargir <[email protected]>
174+
Uday Kakade <[email protected]>
170175
Utkarsh <http://[email protected]>
171176
Utkarsh Raj <[email protected]>
172177
UtkershBasnet <[email protected]>
173178
Vaibhav Patel <[email protected]>
179+
Vara Rahul Rajana <[email protected]>
174180
Varad Gupta <[email protected]>
175181
Vinit Pandit <[email protected]>
176182
Vivek Maurya <[email protected]>
@@ -179,6 +185,7 @@ Yaswanth Kosuru <[email protected]>
179185
Yernar Yergaziyev <[email protected]>
180186
Yugal Kaushik <[email protected]>
181187
Yuvi Mittal <[email protected]>
188+
devshree-bhati <[email protected]>
182189
183190
ekambains <[email protected]>
184191
fadiothman22 <[email protected]>
@@ -189,3 +196,4 @@ pranav-1720 <[email protected]>
189196
rahulrangers <[email protected]>
190197
191198
199+

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,42 @@ setReadOnly( ns, 'anyBy', require( '@stdlib/array-base-any-by' ) );
9999
*/
100100
setReadOnly( ns, 'anyByRight', require( '@stdlib/array-base-any-by-right' ) );
101101

102+
/**
103+
* @name anyHasOwnProp
104+
* @memberof ns
105+
* @readonly
106+
* @type {Function}
107+
* @see {@link module:@stdlib/array/base/any-has-own-property}
108+
*/
109+
setReadOnly( ns, 'anyHasOwnProp', require( '@stdlib/array-base-any-has-own-property' ) );
110+
111+
/**
112+
* @name anyHasProp
113+
* @memberof ns
114+
* @readonly
115+
* @type {Function}
116+
* @see {@link module:@stdlib/array/base/any-has-property}
117+
*/
118+
setReadOnly( ns, 'anyHasProp', require( '@stdlib/array-base-any-has-property' ) );
119+
120+
/**
121+
* @name anyIsEntry
122+
* @memberof ns
123+
* @readonly
124+
* @type {Function}
125+
* @see {@link module:@stdlib/array/base/any-is-entry}
126+
*/
127+
setReadOnly( ns, 'anyIsEntry', require( '@stdlib/array-base-any-is-entry' ) );
128+
129+
/**
130+
* @name anyIsEntryIn
131+
* @memberof ns
132+
* @readonly
133+
* @type {Function}
134+
* @see {@link module:@stdlib/array/base/any-is-entry-in}
135+
*/
136+
setReadOnly( ns, 'anyIsEntryIn', require( '@stdlib/array-base-any-is-entry-in' ) );
137+
102138
/**
103139
* @name arraylike2object
104140
* @memberof ns

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
"@stdlib/array-base-any": "^0.3.0",
4444
"@stdlib/array-base-any-by": "^0.2.2",
4545
"@stdlib/array-base-any-by-right": "^0.2.2",
46+
"@stdlib/array-base-any-has-own-property": "github:stdlib-js/array-base-any-has-own-property#main",
47+
"@stdlib/array-base-any-has-property": "github:stdlib-js/array-base-any-has-property#main",
48+
"@stdlib/array-base-any-is-entry": "github:stdlib-js/array-base-any-is-entry#main",
49+
"@stdlib/array-base-any-is-entry-in": "github:stdlib-js/array-base-any-is-entry-in#main",
4650
"@stdlib/array-base-arraylike2object": "^0.2.1",
4751
"@stdlib/array-base-assert": "^0.3.0",
4852
"@stdlib/array-base-at": "^0.2.2",
@@ -305,6 +309,7 @@
305309
"@stdlib/array-zero-to": "^0.2.2",
306310
"@stdlib/array-zeros": "^0.2.2",
307311
"@stdlib/assert-has-own-property": "^0.2.2",
312+
"@stdlib/assert-has-property": "^0.2.2",
308313
"@stdlib/assert-instance-of": "^0.2.2",
309314
"@stdlib/assert-is-accessor-array": "^0.2.2",
310315
"@stdlib/assert-is-array": "^0.2.2",
@@ -314,6 +319,7 @@
314319
"@stdlib/assert-is-complex-like": "^0.2.2",
315320
"@stdlib/assert-is-complex128array": "^0.2.2",
316321
"@stdlib/assert-is-complex64": "^0.2.2",
322+
"@stdlib/assert-is-equal-booleanarray": "github:stdlib-js/assert-is-equal-booleanarray#main",
317323
"@stdlib/assert-is-float64array": "^0.2.2",
318324
"@stdlib/assert-is-function": "^0.2.2",
319325
"@stdlib/assert-is-int32array": "^0.2.2",
@@ -325,7 +331,6 @@
325331
"@stdlib/assert-is-nonnegative-integer-array": "^0.2.2",
326332
"@stdlib/assert-is-plain-object": "^0.2.2",
327333
"@stdlib/assert-is-positive-integer": "^0.2.2",
328-
"@stdlib/assert-is-same-booleanarray": "^0.1.0",
329334
"@stdlib/assert-is-same-complex128": "^0.2.2",
330335
"@stdlib/assert-is-same-complex128array": "^0.2.2",
331336
"@stdlib/assert-is-same-complex64": "^0.2.2",
@@ -398,6 +403,7 @@
398403
"@stdlib/strided-base-reinterpret-complex128": "^0.2.2",
399404
"@stdlib/strided-base-reinterpret-complex64": "^0.2.1",
400405
"@stdlib/string-format": "^0.2.2",
406+
"@stdlib/string-from-code-point": "^0.2.2",
401407
"@stdlib/utils-constant-function": "^0.2.2",
402408
"@stdlib/utils-constructor-name": "^0.2.2",
403409
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",

0 commit comments

Comments
 (0)