Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@stdlib/string-capitalize

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stdlib/string-capitalize

Capitalize the first character in a string.

Source
npmnpm
Version
0.0.8
Version published
Weekly downloads
2.3K
-12.04%
Maintainers
4
Weekly downloads
 
Created
Source

capitalize

NPM version Build Status Coverage Status

Capitalize the first character in a string.

Installation

npm install @stdlib/string-capitalize

Usage

var capitalize = require( '@stdlib/string-capitalize' );

capitalize( str )

Capitalizes the first character in a string.

var out = capitalize( 'last man standing' );
// returns 'Last man standing'

out = capitalize( 'Hidden Treasures' );
// returns 'Hidden Treasures'

Examples

var capitalize = require( '@stdlib/string-capitalize' );

var str;

str = capitalize( 'last man standing' );
// returns 'Last man standing'

str = capitalize( 'presidential election' );
// returns 'Presidential election'

str = capitalize( 'javaScript' );
// returns 'JavaScript'

str = capitalize( 'Hidden Treasures' );
// returns 'Hidden Treasures'

CLI

Installation

To use the module as a general utility, install the module globally

npm install -g @stdlib/string-capitalize

Usage

Usage: capitalize [options] [<string>]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.
         --split sep           Delimiter for stdin data. Default: '/\\r?\\n/'.

Notes

  • If the split separator is a regular expression, ensure that the split option is either properly escaped or enclosed in quotes.

    # Not escaped...
    $ echo -n $'beep\nboop' | capitalize --split /\r?\n/
    
    # Escaped...
    $ echo -n $'beep\nboop' | capitalize --split /\\r?\\n/
    
  • The implementation ignores trailing delimiters.

Examples

$ capitalize beep
Beep

To use as a standard stream,

$ echo -n 'beEp' | capitalize
BeEp

By default, when used as a standard stream, the implementation assumes newline-delimited data. To specify an alternative delimiter, set the split option.

$ echo -n 'beep\tbOOP' | capitalize --split '\t'
Beep
BOOP

See Also

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat

License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.

Keywords

stdlib

FAQs

Package last updated on 16 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts