Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

npmjs-string-functions-owthub-sample

owthub1ISC1.0.0

This is a node js package which is capable to do some functions like string length, to upper case, to lower case, reverse a string value, find a sub string etc.

string, node, js

readme

What this package is ?

This is a npm package which find the listed functions below

1. Find the length of the string
2. Convert string to Uppercase
3. Convert string to lower case
4. Find a sub string inside a string
5. Reverse a string value

How can we install this package ?


npm install --save npmjs-string-functions-owthub-sample

npm i --save npmjs-string-functions-owthub-sample

How can we make use of this package?


const {findLength, upper, lower, findWord, reverseString} = require("npmjs-string-functions-owthub-sample");

console.log(findLength("Online Web Tutor"));

console.log(upper("Online Web Tutor"));

console.log(lower("Online Web Tutor"));

console.log(findWord("Web", "Online Web Tutor"));

console.log(reverseString("Online Web Tutor"));