remove extra lines

This commit is contained in:
Drew Gross
2016-05-17 00:56:04 -07:00
parent 4d4361451c
commit 0d856c1f23

View File

@@ -112,6 +112,7 @@ const transformInteriorValue = restValue => {
if (typeof restValue === 'object' && Object.keys(restValue).some(key => key.includes('$') || key.includes('.'))) {
throw new Parse.Error(Parse.Error.INVALID_NESTED_KEY, "Nested keys should not contain the '$' or '.' characters");
}
// Handle atomic values
var value = transformInteriorAtom(restValue);
if (value !== CannotTransform) {