cms/app-client/app/helpers/if-or.js
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 08 Jul 2016 18:41:32 +0200
changeset 235 51acae6af8a3
parent 217 989b9c36b849
child 254 a7cf2887e993
permissions -rw-r--r--
Switch to white background
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
217
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     1
import Ember from 'ember';
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     2
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     3
export function ifOr(params) {
235
51acae6af8a3 Switch to white background
Chloe Laisne <chloe.laisne@gmail.com>
parents: 217
diff changeset
     4
	return params.find(element => Array.isArray(element) ? element.length : element);
217
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     5
}
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     6
989b9c36b849 Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     7
export default Ember.Helper.helper(ifOr);