🐊Putout plugin adds ability apply at()
npm install @putout/plugin-apply-at[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-apply-at.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-apply-at "npm"
> The at() method takes an integer value and returns the item at that index, allowing for positive and negative integers. Negative integers count back from the last item in the array.
>
> (c) Array.prototype.at()
> The at() method takes an integer value and returns a new String consisting of the single UTF-16 code unit located at the specified offset. This method allows for positive and negative integers. Negative integers count back from the last string character.>
>
> (c) String.prototype.at()
🐊Putout plugin adds ability to apply array.at().
```
npm i @putout/plugin-apply-at
`json`
{
"rules": {
"apply-at": "on"
}
}
`js`
const latest = (a) => a[a.length - 1];
`js``
const latest = (a) => a.at(-1);
MIT