@iebh/polyglot 5.0.2 → 5.0.4
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 +0 -0
- package/lib/modules/tools.js +6 -0
- package/package.json +1 -1
package/data/v4.xlsx
CHANGED
|
Binary file
|
package/lib/modules/tools.js
CHANGED
|
@@ -217,6 +217,12 @@ 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 = {
|