UNPKG

php.js

Version:

Use phpjs functions as required.

13 lines (11 loc) 380 B
module.exports=function(){ return lcfirst.apply(exports,arguments) }; function lcfirst(str) { // discuss at: http://phpjs.org/functions/lcfirst/ // original by: Brett Zamir (http://brett-zamir.me) // example 1: lcfirst('Kevin Van Zonneveld'); // returns 1: 'kevin Van Zonneveld' str += ''; var f = str.charAt(0) .toLowerCase(); return f + str.substr(1); }