2.0.0 • Published 5 years ago

char-buffer v2.0.0

Weekly downloads
602
License
MIT
Repository
github
Last release
5 years ago

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.

Related

  • caesar-salad uses char-buffer for Caesar, Vigenere and ROT encryption.

License

MIT © Michael Mayer

2.0.0

5 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.8.0

8 years ago

0.7.1

10 years ago

0.7.0

10 years ago

0.6.4

10 years ago

0.6.2

10 years ago

0.6.1

10 years ago

0.6.0

10 years ago

0.5.10

10 years ago

0.5.9

10 years ago

0.5.8

10 years ago

0.5.7

10 years ago

0.5.6

10 years ago

0.5.4

10 years ago

0.4.0

10 years ago

0.3.3

10 years ago

0.3.2

10 years ago

0.2.0

10 years ago