aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/array/#/last.js
blob: 38bb359b38a333a0ca260cbdd1212fbb7c3ae6b7 (plain)
1
2
3
4
5
6
7
8
9
"use strict";

var lastIndex = require("./last-index");

module.exports = function () {
	var i;
	if ((i = lastIndex.call(this)) !== null) return this[i];
	return undefined;
};