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