Blame view

node_modules/es5-ext/string/#/last.js 196 Bytes
aaac7fed   liuqimichale   add
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;
  };