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

var value = require("../../object/valid-value");

module.exports = function () {
	var self = String(value(this)), length = self.length;
	return length ? self[length - 1] : null;
};