1.0.4 • Published 3 years ago

luis-vent-stringlib v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Author: Luis Ventura

This is a developmental library for Strings in javascript.

To install, 1. Open the terminal. 2. Navigate to the project directory. 3. Run 'npm i luis-vent-stringlib' (no quotations) in the command line.

Sample Code:

String.prototype.capitalize = function() {
  return this[0].toUpperCase() + this.slice(1)
}

This function serves to capitalize the first letter in a string.

To use:

[yourStringHere].capitalize()

npm page: https://www.npmjs.com/package/luis-vent-stringlib

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago