export default function computedMap(propertyName, propertyFunction, defaultValue) {
  return computedPromise(`${propertyName}.[]`, function() {
    const property = get(this, propertyName);
    return property.map(propertyFunction);
  }, defaultValue);