mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
"use strict";
|
|
|
|
var lastIndex = require("./last-index");
|
|
|
|
module.exports = function () {
|
|
var i;
|
|
if ((i = lastIndex.call(this)) !== null) return this[i];
|
|
return undefined;
|
|
};
|