pdfnative 1.0.0 → 1.0.2

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.
@@ -256,13 +256,32 @@ function toWinAnsi(str) {
256
256
  if (c >= 32 && c <= 126) r += str[i];
257
257
  else if (c >= 160 && c <= 255) r += str[i];
258
258
  else if (c === 8364) r += "\x80";
259
- else if (c === 8211) r += "\x96";
260
- else if (c === 8212) r += "\x97";
259
+ else if (c === 8218) r += "\x82";
260
+ else if (c === 402) r += "\x83";
261
+ else if (c === 8222) r += "\x84";
262
+ else if (c === 8230) r += "\x85";
263
+ else if (c === 8224) r += "\x86";
264
+ else if (c === 8225) r += "\x87";
265
+ else if (c === 710) r += "\x88";
266
+ else if (c === 8240) r += "\x89";
267
+ else if (c === 352) r += "\x8A";
268
+ else if (c === 8249) r += "\x8B";
269
+ else if (c === 338) r += "\x8C";
270
+ else if (c === 381) r += "\x8E";
261
271
  else if (c === 8216) r += "\x91";
262
272
  else if (c === 8217) r += "\x92";
263
273
  else if (c === 8220) r += "\x93";
264
274
  else if (c === 8221) r += "\x94";
265
- else if (c === 8230) r += "\x85";
275
+ else if (c === 8226) r += "\x95";
276
+ else if (c === 8211) r += "\x96";
277
+ else if (c === 8212) r += "\x97";
278
+ else if (c === 732) r += "\x98";
279
+ else if (c === 8482) r += "\x99";
280
+ else if (c === 353) r += "\x9A";
281
+ else if (c === 8250) r += "\x9B";
282
+ else if (c === 339) r += "\x9C";
283
+ else if (c === 382) r += "\x9E";
284
+ else if (c === 376) r += "\x9F";
266
285
  else if (c === 160 || c === 8239) r += " ";
267
286
  else if (c === 9 || c === 10 || c === 13) r += " ";
268
287
  else if (c < 32) ; else r += "?";