New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vocdoni/common

Package Overview
Dependencies
Maintainers
6
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vocdoni/common

JavaScript/TypeScript common package

1.15.4
latest
Source
npm
Version published
Maintainers
6
Created
Source

@vocdoni/common

@vocdoni/common contains shared helpers, models and type definitions for the dvote-js library

Installation

Use npm to install @vocdoni/common.

npm install @vocdoni/common

Usage

Encoding
import { hexStringToBuffer, uintArrayToHex, bigIntToBuffer, bufferToBigInt } from "@vocdoni/common"

hexStringToBuffer("AABBCC12")
// returns '<Buffer aa bb cc 12>'

const buffer = new Uint8Array([10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 200, 250, 255])
uintArrayToHex(buffer)
// returns '0a141e28323c46505a64c8faff'
uintArrayToHex(buffer, true)
// returns '0x0a141e28323c46505a64c8faff'

const bigint = BigInt("123")
bigIntToBuffer(bigint)
// returns '<Buffer 7b>'

bufferToBigInt(Buffer.from("64", "hex"))
// returns '100n'
Random
import { Random } from "@vocdoni/common"

const bytes = Random.getBytes(8)
// returns '<Buffer 4b 77 f5 f6 30 fc 1a d2>' (random)

const hex = Random.getHex()
// returns '0x64fa37b4d6139678787efebb8bbddcb104de323ccb980343dbfaceca0a49ac83' (32 byte hash (starting with "0x"))

const bigint = Random.getBigInt(256n)
// returns '28n' (random)

const shuffle = Random.shuffle([1, 2, 3, 4])
// returns '[ 2, 4, 1, 3 ]' (random order)

Testing

To execute library tests just run

npm run test

FAQs

Package last updated on 19 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts