At, creates an array of values corresponding to paths of the object
object
(object): input objectpaths
(...(string|string[])): strings describing paths to be returned from an object
(array): array of values found by object paths in object
const result = objects.at({ a: [13, 64], ']': 'b' });
console.log(result, 'a[1]');
> [64]