server/bo_client/app/helpers/add-one.js
author ymh <ymh.work@gmail.com>
Fri, 05 Feb 2016 17:01:09 +0100
changeset 117 7abc74acf392
parent 20 a9b98b16b053
permissions -rw-r--r--
When merging ore:aggregation, process the license correctly, if different or null, the default is use, if the same, this is the value used

import Ember from 'ember';

export function addOne(params) {
  return params[0] + 1;
}

export default Ember.Helper.helper(addOne);