mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
"use strict";
|
|
|
|
var firstIndex = require("./first-index");
|
|
|
|
module.exports = function () {
|
|
var i;
|
|
if ((i = firstIndex.call(this)) !== null) return this[i];
|
|
return undefined;
|
|
};
|