e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
22 lines
540 B
JavaScript
22 lines
540 B
JavaScript
import Transform from 'ember-data/transform';
|
|
|
|
export default Transform.extend({
|
|
deserialize(serialized) {
|
|
if (serialized) {
|
|
let [, user] = serialized.match(/(\S+)/);
|
|
|
|
return `https://www.facebook.com/${user}`;
|
|
}
|
|
return serialized;
|
|
},
|
|
|
|
serialize(deserialized) {
|
|
if (deserialized) {
|
|
let [, user] = deserialized.match(/(?:https:\/\/)(?:www\.)(?:facebook\.com)\/(?:#!\/)?(\w+\/?\S+)/mi);
|
|
|
|
return user;
|
|
}
|
|
return deserialized;
|
|
}
|
|
});
|