@stdlib/array-base-last-index-of 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -83,7 +83,7 @@ var idx = lastIndexOf( x, 7, 5, false );
83
83
  // returns -1
84
84
  ```
85
85
 
86
- To begin searching from specific index, provide a `fromIndex` argument.
86
+ To begin searching from a specific index, provide a corresponding `fromIndex` argument.
87
87
 
88
88
  ```javascript
89
89
  var x = [ 1, 1, 2, 1, 2, 3, 3 ];
@@ -225,8 +225,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
225
225
  [npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-last-index-of.svg
226
226
  [npm-url]: https://npmjs.org/package/@stdlib/array-base-last-index-of
227
227
 
228
- [test-image]: https://github.com/stdlib-js/array-base-last-index-of/actions/workflows/test.yml/badge.svg?branch=v0.2.1
229
- [test-url]: https://github.com/stdlib-js/array-base-last-index-of/actions/workflows/test.yml?query=branch:v0.2.1
228
+ [test-image]: https://github.com/stdlib-js/array-base-last-index-of/actions/workflows/test.yml/badge.svg?branch=v0.2.2
229
+ [test-url]: https://github.com/stdlib-js/array-base-last-index-of/actions/workflows/test.yml?query=branch:v0.2.2
230
230
 
231
231
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-last-index-of/main.svg
232
232
  [coverage-url]: https://codecov.io/github/stdlib-js/array-base-last-index-of?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/array-base-last-index-of",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Return the index of the last element which equals a provided search element.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@stdlib/array-base-arraylike2object": "^0.2.1",
34
- "@stdlib/math-base-assert-is-nan": "^0.2.1"
34
+ "@stdlib/math-base-assert-is-nan": "^0.2.2"
35
35
  },
36
36
  "devDependencies": {},
37
37
  "engines": {