This website collects cookies to deliver better user experience
New npm package that may help you with JavaScript
New npm package that may help you with JavaScript
Welcome dev community!
Today I would like to introduce you to my npm package, which can be useful for any beginner or advanced JavaScript developer.
It's a collection of functions inspired from Python and rewritten for JavaScript, so now you can easily e.g. capitalize a string or display e.g. last 4 characters from a string.
To check it out, just install it quickly and easily via npm
$ npminstall simhok
# or$ yarnadd simhok
Now all we have to do is import the package into JS project
// Import what you needimport{ len, log }from"simhok"// Import all functionsimport*asSimfrom"simhok"// In node.jsconst{ len, log }=require("simhok");