šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

base64-vlq

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-vlq

A base64 vlq encode/decode utils for source maps

0.0.5
latest
Source
npm
Version published
Weekly downloads
23
91.67%
Maintainers
1
Weekly downloads
Ā 
Created
Source

base64-vlq

A base64 vlq encode/decode utils for source maps.

NOTE: VLQ encoding here is different from described in wikipedia, vlq here is use sextet not octet.

NOTE 2:
This package is only support nodejs environment currently.

Install

npm i base64-vlq

Usage

const {base64VlqEncode, base64VlqDecode} = require('base64-vlq')

base64VlqEncode([ 0, 0, 16, 1 ]) // AAgBC
base64VlqDecode('AAgBC') // [ 0, 0, 16, 1 ]

base64VlqEncode([ 0 ]) // A
base64VlqDecode('A') // [ 0 ]

base64VlqEncode([ -0 ]) // B
base64VlqDecode('B') // [ -0 ]

Keywords

base64-vlq

FAQs

Package last updated on 06 Jan 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