mg-library 1.0.792 → 1.0.793

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/functions.js CHANGED
@@ -349,7 +349,7 @@ export function getDateForExposition(date, language) {
349
349
  let m = moment(date, language.dateFormat);
350
350
  let day = m.format('D');
351
351
  let dayName = capitalize(m.format('dddd'));
352
- let monthName = capitalize(m.format('MMMM'));
352
+ let monthName = capitalize(m.format('MMMM')).substring(0, 3);
353
353
  let year = m.format('YYYY');
354
354
  return dayName + ', ' + day + ' ' + monthName + ' ' + year;
355
355
  }
package/mg-library.rar CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.792",
3
+ "version": "1.0.793",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "react-native": "index.js",