demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/startCase.js

Path
demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/startCase.js
Status
scanned
Type
file
Name
startCase.js
Extension
.js
Programming language
JavaScript
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
714 (714 bytes)
MD5
9f860d4002c8c7942c8005d6169908bf
SHA1
5cae4afa2846579e8173a62ae27253a75fb57119
SHA256
108cd495196f72d90a5fd94044456cf5a2761f0516923bdeb76740d00db42d22
SHA512

      
    
SHA1_git
a48f21ce9b3ddf44f699ad0bc45e9a3164f91c24
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
startCase.js | 714 bytes |

var createCompounder = require('./_createCompounder'), upperFirst = require('./upperFirst'); /** * Converts `string` to * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). * * @static * @memberOf _ * @since 3.1.0 * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the start cased string. * @example * * _.startCase('--foo-bar--'); * // => 'Foo Bar' * * _.startCase('fooBar'); * // => 'Foo Bar' * * _.startCase('__FOO_BAR__'); * // => 'FOO BAR' */ var startCase = createCompounder(function(result, word, index) { return result + (index ? ' ' : '') + upperFirst(word); }); module.exports = startCase;
URL Start line End line
https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage 6 6
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript