forms-angular 0.12.0-beta.245 → 0.12.0-beta.246

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.
@@ -707,7 +707,7 @@ class FormsAngular {
707
707
  acc[cur] = val;
708
708
  }
709
709
  }
710
- else if (curType === 'object') {
710
+ else if (curType === 'object' && !(val instanceof Date) && !(val instanceof RegExp)) {
711
711
  acc[cur] = processInternalObject(obj[cur]);
712
712
  }
713
713
  else {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Mark Chapman <support@forms-angular.org>",
4
4
  "description": "A form builder that sits on top of Angular.js, Twitter Bootstrap, jQuery UI, Angular-UI, Express and Mongoose. Opinionated or what?",
5
5
  "homepage": "http://forms-angular.org",
6
- "version": "0.12.0-beta.245",
6
+ "version": "0.12.0-beta.246",
7
7
  "engines": {
8
8
  "node": ">=8.x",
9
9
  "npm": ">=5.x"