Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/string/#/capitalize.js | 8 lines | 183 B | application/javascript | JavascriptLexer |
move datatable to yarn
r789 "use strict";
var value = require("../../object/valid-value");
module.exports = function () {
var str = String(value(this));
return str.charAt(0).toUpperCase() + str.slice(1);
};