0.0.2 • Published 8 years ago

code-array v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

code-array

Build Status npm: license:mit

Simple utility module that will help you with converting:

  • strings to character code arrays
  • character code arrays to strings

    Installation

    npm install code-array --save

    Example usage

 var codeArray = require('code-array');

 var arr = codeArray.fromString('ABC'); // arr is  [65, 66, 67]

 var str = codeArray.toString([65, 66, 67]); // str is 'ABC'