Files
w4rpservices/node_modules/es5-ext/array/#/first.js
2018-10-27 03:51:47 -05:00

10 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;
};