pdfnative 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -254,13 +254,32 @@ function toWinAnsi(str) {
254
254
  if (c >= 32 && c <= 126) r += str[i];
255
255
  else if (c >= 160 && c <= 255) r += str[i];
256
256
  else if (c === 8364) r += "\x80";
257
- else if (c === 8211) r += "\x96";
258
- else if (c === 8212) r += "\x97";
257
+ else if (c === 8218) r += "\x82";
258
+ else if (c === 402) r += "\x83";
259
+ else if (c === 8222) r += "\x84";
260
+ else if (c === 8230) r += "\x85";
261
+ else if (c === 8224) r += "\x86";
262
+ else if (c === 8225) r += "\x87";
263
+ else if (c === 710) r += "\x88";
264
+ else if (c === 8240) r += "\x89";
265
+ else if (c === 352) r += "\x8A";
266
+ else if (c === 8249) r += "\x8B";
267
+ else if (c === 338) r += "\x8C";
268
+ else if (c === 381) r += "\x8E";
259
269
  else if (c === 8216) r += "\x91";
260
270
  else if (c === 8217) r += "\x92";
261
271
  else if (c === 8220) r += "\x93";
262
272
  else if (c === 8221) r += "\x94";
263
- else if (c === 8230) r += "\x85";
273
+ else if (c === 8226) r += "\x95";
274
+ else if (c === 8211) r += "\x96";
275
+ else if (c === 8212) r += "\x97";
276
+ else if (c === 732) r += "\x98";
277
+ else if (c === 8482) r += "\x99";
278
+ else if (c === 353) r += "\x9A";
279
+ else if (c === 8250) r += "\x9B";
280
+ else if (c === 339) r += "\x9C";
281
+ else if (c === 382) r += "\x9E";
282
+ else if (c === 376) r += "\x9F";
264
283
  else if (c === 160 || c === 8239) r += " ";
265
284
  else if (c === 9 || c === 10 || c === 13) r += " ";
266
285
  else if (c < 32) ; else r += "?";