Skip to content

Instantly share code, notes, and snippets.

@billybonks
Created August 27, 2018 13:20
Show Gist options
  • Save billybonks/2304d831bfd42097c42710a6e8c0a6f7 to your computer and use it in GitHub Desktop.
Save billybonks/2304d831bfd42097c42710a6e8c0a6f7 to your computer and use it in GitHub Desktop.
possible let
import Helper from 'ember-helper';
export default Helper.extend({
compute(params, hash, options) {
let isBlock = !!options.template.yield;
// when used as a block
if (isBlock) {
options.template.yield(params);
}
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment