@iebh/polyglot 5.0.3 → 5.0.5

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.
package/data/v4.xlsx CHANGED
Binary file
@@ -217,31 +217,37 @@ var tools = {
217
217
  return tools.multiReplace(text, replaceObj);
218
218
  // Return here to prevent duplicate quotes
219
219
  case 'Embase (Elsevier)':
220
+ replaceObj = {
221
+ '$': '*',
222
+ '?': '$',
223
+ '#': '?'
224
+ };
225
+ break;
220
226
  case 'Web of Science':
221
227
  case 'WoS Advanced':
222
228
  replaceObj = {
223
- '$': '?',
229
+ '$': '*',
224
230
  '?': '$',
225
231
  '#': '?'
226
232
  };
227
233
  break;
228
234
  case 'CINAHL (Ebsco)':
229
235
  replaceObj = {
230
- '$': '?',
236
+ '$': '*',
231
237
  '?': '#',
232
238
  '#': '?'
233
239
  };
234
240
  break;
235
241
  case 'Business Source Ultimate':
236
242
  replaceObj = {
237
- '$': '?',
243
+ '$': '*',
238
244
  '?': '#',
239
245
  '#': '?'
240
246
  };
241
247
  break;
242
248
  case 'PsycInfo (Ebsco)':
243
249
  replaceObj = {
244
- '$': '?',
250
+ '$': '*',
245
251
  '?': '#',
246
252
  '#': '?'
247
253
  };
@@ -250,15 +256,17 @@ var tools = {
250
256
  case 'Scopus (advanced search)':
251
257
  // space = true; //Always include quotes with scopus to make phrase a "loose phrase"
252
258
  replaceObj = {
253
- '$': '?',
259
+ '$': '*',
254
260
  '?': settings.highlighting ? tools.createTooltip("*", "0 or 1 character truncation is not available. The multiple character wildcard symbol has been substituted.", "highlight") : '*',
255
261
  '#': '?'
256
262
  };
257
263
  break;
258
264
  case 'PsycInfo (Ovid)':
259
265
  replaceObj = {
260
- '$': '#'
266
+ '$': '*'
267
+ // '$': '#'
261
268
  };
269
+
262
270
  break;
263
271
  // case 'Lilacs':
264
272
  // replaceObj = {
@@ -267,7 +275,7 @@ var tools = {
267
275
  // break;
268
276
  case 'ProQuest Health and Medical':
269
277
  replaceObj = {
270
- '$': '?',
278
+ '$': '*',
271
279
  '#': '?'
272
280
  };
273
281
  break;
@@ -277,13 +285,14 @@ var tools = {
277
285
  }
278
286
 
279
287
  replaceObj = {
280
- '$': '#?',
288
+ '$': '*',
289
+ // '$': '#?',
281
290
  '?': '#'
282
291
  };
283
292
  break;
284
293
  case 'Informit Health Collection':
285
294
  replaceObj = {
286
- '$': '?',
295
+ '$': '*',
287
296
  '?': '*1'
288
297
  };
289
298
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/polyglot",
3
- "version": "5.0.3",
3
+ "version": "5.0.5",
4
4
  "description": "IEBH-SRA tool to convert between different medical database search formats",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {