|
7 | 7 | 888 888 888 888 Y88b. 888 Y8bd8P Y8b. 888" 888 888 X88 Y88b. 888 888 |
8 | 8 | 888 888 "Y888888 "Y888 888 Y88P "Y8888 888888888 "Y888888 88888P' "Y8888P 888 888 |
9 | 9 |
|
10 | | -[node-native2ascii](https://github.com/NotNinja/node-native2ascii) is a [Node.js](https://nodejs.org) implementation of |
| 10 | +[node-native2ascii](https://github.com/neocotic/node-native2ascii) is a [Node.js](https://nodejs.org) implementation of |
11 | 11 | Java's Native-to-ASCII Converter. |
12 | 12 |
|
13 | | -[](https://travis-ci.org/NotNinja/node-native2ascii) |
14 | | -[](https://codecov.io/gh/NotNinja/node-native2ascii) |
15 | | -[](https://david-dm.org/NotNinja/node-native2ascii) |
16 | | -[](https://david-dm.org/NotNinja/node-native2ascii?type=dev) |
17 | | -[](https://github.com/NotNinja/node-native2ascii/blob/master/LICENSE.md) |
| 13 | +[](https://travis-ci.org/neocotic/node-native2ascii) |
| 14 | +[](https://codecov.io/gh/neocotic/node-native2ascii) |
| 15 | +[](https://david-dm.org/neocotic/node-native2ascii) |
| 16 | +[](https://david-dm.org/neocotic/node-native2ascii?type=dev) |
| 17 | +[](https://github.com/neocotic/node-native2ascii/blob/master/LICENSE.md) |
18 | 18 | [](https://www.npmjs.com/package/node-native2ascii) |
19 | 19 |
|
20 | 20 | * [Install](#install) |
@@ -44,10 +44,8 @@ $ npm install --global node-native2ascii |
44 | 44 | ## CLI |
45 | 45 |
|
46 | 46 | Usage: native2ascii [options] [inputfile] [outputfile] |
47 | | - |
48 | | - |
| 47 | + |
49 | 48 | Options: |
50 | | - |
51 | 49 | -e, --encoding <encoding> specify encoding to be used by the conversion procedure |
52 | 50 | -r, --reverse perform reverse operation |
53 | 51 | -V, --version output the version number |
@@ -111,35 +109,35 @@ Unicode escape characters not in the ASCII character set so that they can be saf |
111 | 109 | const native2ascii = require('node-native2ascii'); |
112 | 110 |
|
113 | 111 | native2ascii('I ♥ native2ascii!'); |
114 | | -//=> "I \u2665 native2ascii!" |
| 112 | +//=> "I \\u2665 native2ascii!" |
115 | 113 | ``` |
116 | 114 |
|
117 | 115 | These can be later unescaped by reversing the operation: |
118 | 116 |
|
119 | 117 | ``` javascript |
120 | 118 | const native2ascii = require('node-native2ascii'); |
121 | 119 |
|
122 | | -native2ascii('I \u2665 native2ascii!', { reverse: true }); |
| 120 | +native2ascii('I \\u2665 native2ascii!', { reverse: true }); |
123 | 121 | //=> "I ♥ native2ascii!" |
124 | 122 | ``` |
125 | 123 |
|
126 | 124 | ## Bugs |
127 | 125 |
|
128 | 126 | If you have any problems with node-native2ascii or would like to see changes currently in development you can do so |
129 | | -[here](https://github.com/NotNinja/node-native2ascii/issues). |
| 127 | +[here](https://github.com/neocotic/node-native2ascii/issues). |
130 | 128 |
|
131 | 129 | ## Contributors |
132 | 130 |
|
133 | 131 | If you want to contribute, you're a legend! Information on how you can do so can be found in |
134 | | -[CONTRIBUTING.md](https://github.com/NotNinja/node-native2ascii/blob/master/CONTRIBUTING.md). We want your suggestions |
| 132 | +[CONTRIBUTING.md](https://github.com/neocotic/node-native2ascii/blob/master/CONTRIBUTING.md). We want your suggestions |
135 | 133 | and pull requests! |
136 | 134 |
|
137 | 135 | A list of node-native2ascii contributors can be found in |
138 | | -[AUTHORS.md](https://github.com/NotNinja/node-native2ascii/blob/master/AUTHORS.md). |
| 136 | +[AUTHORS.md](https://github.com/neocotic/node-native2ascii/blob/master/AUTHORS.md). |
139 | 137 |
|
140 | 138 | ## License |
141 | 139 |
|
142 | | -See [LICENSE.md](https://github.com/NotNinja/node-native2ascii/raw/master/LICENSE.md) for more information on our MIT |
143 | | -license. |
| 140 | +Copyright © 2018 Alasdair Mercer |
144 | 141 |
|
145 | | -[](https://not.ninja) |
| 142 | +See [LICENSE.md](https://github.com/neocotic/node-native2ascii/raw/master/LICENSE.md) for more information on our MIT |
| 143 | +license. |
0 commit comments