Socket
Socket
Sign inDemoInstall

char-buffer

Package Overview
Dependencies
0
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    char-buffer

Collect CharCodes and convert them to string.


Version published
Maintainers
1
Install size
41.4 kB
Created

Readme

Source

char-buffer Build Status Image Coverage Status Built with Grunt XO code style

Collect CharCodes and convert them to a string.

Install

$ npm install --save char-buffer

Usage

const CharBuffer = require('char-buffer');

// Create a CharBuffer
var buffer = new CharBuffer();

// Append a CharCode:
buffer.append(102);

// Append two more CharCodes:
buffer.append(111).append(111);

// Output 'foo':
console.log(buffer.toString());

Documentation

  • See API for thorough documentation.
  • caesar-salad uses char-buffer for Caesar, Vigenere and ROT encryption.

License

MIT © Michael Mayer

Keywords

FAQs

Last updated on 22 Sep 2019

Did you know?

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc