We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc92121 commit 455969fCopy full SHA for 455969f
1 file changed
README.md
@@ -1,8 +1,24 @@
1
code-array
2
----------
3
+[](https://travis-ci.org/jarst/code-array)
4
+[](https://www.npmjs.com/packages/code-array)
5
+
6
Simple utility module that will help you with converting:
7
* strings to character code arrays
8
* character code arrays to strings
9
10
+ ## Installation
11
+ `npm install code-array --save`
12
13
+ ## Example usage
14
15
+```
16
+ var codeArray = require('code-array');
17
18
+ var arr = codeArray.fromString('ABC'); // arr is [65, 66, 67]
19
20
+ var str = codeArray.toString([65, 66, 67]); // str is 'ABC'
21
+ ```
22
23
24
0 commit comments