@nikita_npm/awesome_string_parsing
v1.0.2-alpha
Published
The package has one function. The function gets string and print to console the number of vowels and consonants also print the length of the string. After all, the function returns an array with numbers that were printed.
Downloads
2
Maintainers
Readme
awesome_string_parsing
The package has one function. The function gets string and print to console the number of vowels and consonants also print the length of the string. After all, the function returns an array with numbers that were printed. Using in your script: const someVar = require("@nikita_npm/awesome_string_parsing"); someVar.string_parsing('string_parsing'); /////output//////////// Number of vowels in string: 3 Number of consonants in string: 11 String length: 14 [ 3, 11, 14 ]