all files / app/helpers/ multiply.js

100% Statements 30/30
100% Branches 14/14
100% Functions 4/4
100% Lines 3/3
20 statements, 1 function, 13 branches Ignored     
1 2 3 4 5 6 7 8 9 10 11                 
import {helper} from 'ember-helper'
 
 
 
export function multiply ([a, b]/*, hash*/) {
  return a * b
}
 
export default helper(multiply)