diff --git a/addon/attr.js b/addon/attr.js index e29d5713b1b..9380d1e370e 100644 --- a/addon/attr.js +++ b/addon/attr.js @@ -92,7 +92,7 @@ function getValue(record, key) { ```app/transforms/text.js export default DS.Transform.extend({ - serialize: function(value, options) { + serialize(value, options) { if (options.uppercase) { return value.toUpperCase(); } @@ -100,7 +100,7 @@ function getValue(record, key) { return value; }, - deserialize: function(value) { + deserialize(value) { return value; } })