We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7531b48 commit b4cde69Copy full SHA for b4cde69
1 file changed
modules/angular2/src/facade/lang.dart
@@ -202,9 +202,8 @@ dynamic getMapKey(value) {
202
return value.isNaN ? _NAN_KEY : value;
203
}
204
205
-dynamic normalizeBlank(obj) {
206
- return isBlank(obj) ? null : obj;
207
-}
+// TODO: remove with https://github.com/angular/angular/issues/3055
+dynamic normalizeBlank(obj) => obj;
208
209
bool normalizeBool(bool obj) {
210
return isBlank(obj) ? false : obj;
0 commit comments