length-1

1.0.1 • Public • Published

length-1 build status npm version

First negative index through Array

var getLengthMinus1 = require('./length-1');
 
// Arrays fixed
var arr = [1, 2, 3];
arr[-1]; // 3
 
// reusable tested functionality
Object.defineProperty(
  NodeList.prototype,
  -1,
  {get: getLengthMinus1}
);
document.querySelectorAll('#menu li')[-1];

/length-1/

    Package Sidebar

    Install

    npm i length-1

    Weekly Downloads

    3

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • webreflection