Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pedash

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pedash - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

index.js

@@ -1,2 +0,2 @@

module.exports.getAmount = function(arr) {
module.exports.getCharCounts = function(arr) {
return arr.reduce((total, currentItem) => {

@@ -3,0 +3,0 @@ total[currentItem] = (total[currentItem] || 0) + 1;

{
"name": "pedash",
"version": "0.0.4",
"version": "0.0.5",
"description": "A lodash-like javascript helper -- for dummies",

@@ -5,0 +5,0 @@ "main": "index.js",

## Pedash
A simple palindrome checker app
A simple Javascript utilities library to ease your daily development routines. You can think of it as a mini-lodash.

@@ -14,8 +14,11 @@ ## How to use

```
import { isPalindrome } from palindjono
import { getLongest } from pedash;
// Then use it like so
isPalindrome("Heheh")
// Then use it whatever you like
const foods = ["Pizza", "Lasagna", "Karedok", "Banana split", "Rendang", "Souffle"];
// In console: "Heheh is a palindrome!!!"
console.log(getLongest(foods));
// "Banana split"
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc