@iebh/polyglot 5.0.4 → 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.
@@ -226,28 +226,28 @@ var tools = {
226
226
  case 'Web of Science':
227
227
  case 'WoS Advanced':
228
228
  replaceObj = {
229
- '$': '?',
229
+ '$': '*',
230
230
  '?': '$',
231
231
  '#': '?'
232
232
  };
233
233
  break;
234
234
  case 'CINAHL (Ebsco)':
235
235
  replaceObj = {
236
- '$': '?',
236
+ '$': '*',
237
237
  '?': '#',
238
238
  '#': '?'
239
239
  };
240
240
  break;
241
241
  case 'Business Source Ultimate':
242
242
  replaceObj = {
243
- '$': '?',
243
+ '$': '*',
244
244
  '?': '#',
245
245
  '#': '?'
246
246
  };
247
247
  break;
248
248
  case 'PsycInfo (Ebsco)':
249
249
  replaceObj = {
250
- '$': '?',
250
+ '$': '*',
251
251
  '?': '#',
252
252
  '#': '?'
253
253
  };
@@ -256,15 +256,17 @@ var tools = {
256
256
  case 'Scopus (advanced search)':
257
257
  // space = true; //Always include quotes with scopus to make phrase a "loose phrase"
258
258
  replaceObj = {
259
- '$': '?',
259
+ '$': '*',
260
260
  '?': settings.highlighting ? tools.createTooltip("*", "0 or 1 character truncation is not available. The multiple character wildcard symbol has been substituted.", "highlight") : '*',
261
261
  '#': '?'
262
262
  };
263
263
  break;
264
264
  case 'PsycInfo (Ovid)':
265
265
  replaceObj = {
266
- '$': '#'
266
+ '$': '*'
267
+ // '$': '#'
267
268
  };
269
+
268
270
  break;
269
271
  // case 'Lilacs':
270
272
  // replaceObj = {
@@ -273,7 +275,7 @@ var tools = {
273
275
  // break;
274
276
  case 'ProQuest Health and Medical':
275
277
  replaceObj = {
276
- '$': '?',
278
+ '$': '*',
277
279
  '#': '?'
278
280
  };
279
281
  break;
@@ -283,13 +285,14 @@ var tools = {
283
285
  }
284
286
 
285
287
  replaceObj = {
286
- '$': '#?',
288
+ '$': '*',
289
+ // '$': '#?',
287
290
  '?': '#'
288
291
  };
289
292
  break;
290
293
  case 'Informit Health Collection':
291
294
  replaceObj = {
292
- '$': '?',
295
+ '$': '*',
293
296
  '?': '*1'
294
297
  };
295
298
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/polyglot",
3
- "version": "5.0.4",
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": {