bpm-core 0.0.151 → 0.0.152

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.
@@ -1283,7 +1283,10 @@ class CoreService {
1283
1283
  if (nameTokens.length == 1) {
1284
1284
  return [nameTokens[0]];
1285
1285
  }
1286
- else if (nameTokens[nameTokens.length - 2].toLowerCase() == 'al') {
1286
+ else if (nameTokens[nameTokens.length - 2].toLowerCase() == 'al'
1287
+ || nameTokens[nameTokens.length - 2].toLowerCase() == 'bin'
1288
+ || nameTokens[nameTokens.length - 2].toLowerCase() == 'ben'
1289
+ || nameTokens[nameTokens.length - 2].toLowerCase() == 'بن') {
1287
1290
  return [nameTokens[0], nameTokens[nameTokens.length - 2], nameTokens[nameTokens.length - 1]].join(' ');
1288
1291
  }
1289
1292
  else {