8000 Auto-generated commit · stdlib-js/string-remove-first@e447ae1 · GitHub
[go: up one dir, main page]

Skip to content

Commit e447ae1

Browse files
committed
Auto-generated commit
1 parent a1d023d commit e447ae1

File tree

6 files changed

+7
-8
lines changed
  • < 8000 div class="PRIVATE_VisuallyHidden prc-TreeView-TreeViewVisuallyHidden-4-mPv" aria-hidden="true" id=":R2tddabH1:">
    docs/types
  • examples
  • lib
  • 6 files changed

    +7
    -8
    lines changed

    CONTRIBUTORS

    Lines changed: 3 additions & 3 deletions
    Original file line numberDiff line numberDiff line change
    @@ -3,11 +3,13 @@
    33
    # Contributors listed in alphabetical order.
    44

    55
    Ali Salesi <ali_sal1381@yahoo.com>
    6+
    Amit Jimiwal <amitjimiwal45@gmail.com>
    67
    Athan Reines <kgryte@gmail.com>
    78
    Brendan Graetz <bguiz@users.noreply.github.com>
    89
    Bruno Fenzl <brunofenzl@gmail.com>
    910
    Christopher Dambamuromo <chridam@gmail.com>
    1011
    Dominik Moritz <domoritz@gmail.com>
    12+
    Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
    1113
    Frank Kovacs <fran70kk@gmail.com>
    1214
    Harshita Kalani <harshitakalani02@gmail.com>
    1315
    James Gelok <jdgelok@gmail.com>
    @@ -16,12 +18,12 @@ Joey Reed <joeyrreed@gmail.com>
    1618
    Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
    1719
    Joris Labie <joris.labie1@gmail.com>
    1820
    Justin Dennison <justin1dennison@gmail.com>
    19-
    Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
    2021
    Marcus Fantham <mfantham@users.noreply.github.com>
    2122
    Matt Cochrane <matthew.cochrane.eng@gmail.com>
    2223
    Milan Raj <rajsite@users.noreply.github.com>
    2324
    Momtchil Momtchev <momtchil@momtchev.com>
    2425
    Naresh Jagadeesan <naresh.naresh000@gmail.com>
    26+
    Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
    2527
    Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
    2628
    Philipp Burckhardt <pburckhardt@outlook.com>
    2729
    Pranav Goswami <goswami.4@iitj.ac.in>
    @@ -32,7 +34,5 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
    3234
    Shraddheya Shendre <shendreshraddheya@gmail.com>
    3335
    Stephannie Jiménez Gacha <steff456@hotmail.com>
    3436
    Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
    35-
    Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
    36-
    Amit Jimiwal <amitjimiwal45@gmail.com>
    3737
    orimiles5 <97595296+orimiles5@users.noreply.github.com>
    3838
    rei2hu <reimu@reimu.ws>

    README.md

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -92,7 +92,7 @@ var str = removeFirst( 'last man standing' );
    9292
    str = removeFirst( 'presidential election' );
    9393
    // returns 'residential election'
    9494

    95-
    str = removeFirst( 'javaScript' );
    95+
    str = removeFirst( 'JavaScript' );
    9696
    // returns 'avaScript'
    9797

    9898
    str = removeFirst( 'Hidden Treasures' );

    docs/types/index.d.ts

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -34,7 +34,7 @@
    3434
    * // returns 'residential election'
    3535
    *
    3636
    * @example
    37-
    * var out = removeFirst( 'javaScript' );
    37+
    * var out = removeFirst( 'JavaScript' );
    3838
    * // returns 'avaScript'
    3939
    *
    4040
    * @example

    docs/types/test.ts

    Lines changed: 0 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -43,7 +43,6 @@ import removeFirst = require( './index' );
    4343
    removeFirst( 'abc', true ); // $ExpectError
    4444
    removeFirst( 'abc', false ); // $ExpectError
    4545
    removeFirst( 'abc', null ); // $ExpectError
    46-
    removeFirst( 'abc', undefined ); // $ExpectError
    4746
    removeFirst( 'abc', 'abc' ); // $ExpectError
    4847
    removeFirst( 'abc', [] ); // $ExpectError
    4948
    removeFirst( 'abc', {} ); // $ExpectError

    examples/index.js

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -26,7 +26,7 @@ console.log( removeFirst( 'last man standing' ) );
    2626
    console.log( removeFirst( 'presidential election' ) );
    2727
    // => 'residential election'
    2828

    29-
    console.log( removeFirst( 'javaScript' ) );
    29+
    console.log( removeFirst( 'JavaScript' ) );
    3030
    // => 'avaScript'
    3131

    3232
    console.log( removeFirst( 'Hidden Treasures' ) );

    lib/main.js

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -46,7 +46,7 @@ var format = require( '@stdlib/string-format' );
    4646
    * // returns 'residential election'
    4747
    *
    4848
    * @example
    49-
    * var out = removeFirst( 'javaScript' );
    49+
    * var out = removeFirst( 'JavaScript' );
    5050
    * // returns 'avaScript'
    5151
    *
    5252
    * @example

    0 commit comments

    Comments
     (0)
    0