@frosted/array-at 1.0.0 → 1.0.1

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 +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -21,7 +21,7 @@ Shimming Array.prototype.at:
21
21
  ```js
22
22
  require("@frosted/array-at/shim")
23
23
 
24
- console.log([1, 2, 3].at()) // [3, 2, 1]
24
+ console.log([1, 2, 3].at(1)) // 2
25
25
  ```
26
26
 
27
27
  ## Tests
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frosted/array-at",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Get the item at a specified index in an array, allowing for positive and negative integers",
5
5
  "keywords": [
6
6
  "10xly",