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

short-hash-ts

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

short-hash-ts - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "short-hash-ts",
"version": "1.0.0",
"version": "1.0.1",
"description": "Get a quick hash that uses the well-liked Bernstein \"times 33\" hash method and delivers a hex string.",

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

# short-hash-ts
Get a quick hash that uses the well-liked Bernstein "times 33" hash method and delivers a hex string.
-> Get a quick hash that uses the well-liked Bernstein "times 33" hash method and delivers a hex string.
## Installation
Install `short-hash-ts` using [npm](https://www.npmjs.com/):
```bash
npm i short-hash-ts
```
## Usage
#### Creating a hash string
```javascript
import shorthash from 'short-hash-ts';
OR
var shorthash = require('short-hash-ts');
console.log(shorthash.unique('name'));
// you will get: eQEF
console.log(shorthash.unique('https://younisrahman.com/'));
// you will get: Z10i5MF
console.log(shorthash.unique('The quick brown fox jumps over the lazy dog'));
// you will get: ZI0UJg
console.log(shorthash.unique('আমি বাংলা বলতে পারি'));
// you will get: Z2tKMTX
```
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