File size: 183 Bytes
b5ea024
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"use strict";

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

module.exports = function () {
	var str = String(value(this));
	return str.charAt(0).toUpperCase() + str.slice(1);
};