mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
8 lines
183 B
JavaScript
Vendored
8 lines
183 B
JavaScript
Vendored
"use strict";
|
|
|
|
var value = require("../../object/valid-value");
|
|
|
|
module.exports = function () {
|
|
var str = String(value(this));
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
};
|