mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
'use strict';
|
|
|
|
var ensureStringifiable = require('../../object/validate-stringifiable-value');
|
|
|
|
module.exports = function () {
|
|
var str = ensureStringifiable(this);
|
|
return str.charAt(0).toLowerCase() + str.slice(1);
|
|
};
|