mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
9 lines
176 B
JavaScript
Vendored
9 lines
176 B
JavaScript
Vendored
"use strict";
|
|
|
|
var lastIndex = require("./last-index");
|
|
|
|
module.exports = function () {
|
|
var i;
|
|
if ((i = lastIndex.call(this)) !== null) return this[i];
|
|
return undefined;
|
|
};
|