Skip to content

Instantly share code, notes, and snippets.

@eventualbuddha
Created March 22, 2018 19:07
Show Gist options
  • Save eventualbuddha/7115f82cc060358a059d87956918a5fa to your computer and use it in GitHub Desktop.
Save eventualbuddha/7115f82cc060358a059d87956918a5fa to your computer and use it in GitHub Desktop.
ember-get-has-own-property
import Ember from 'ember';
class Counter {}
Counter.prototype.value = 0;
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
counter: Ember.computed(function() {
return new Counter();
}),
counterValue: Ember.computed.alias('counter.value')
});
import Ember from 'ember';
export function hasOwnProperty(params/*, hash*/) {
const [ object, property ] = params;
return Object.prototype.hasOwnProperty.call(object, property);
}
export default Ember.Helper.helper(hasOwnProperty);
<h1>Welcome to {{appName}}</h1>
<br>
{{outlet}}
counter.hasOwnProperty('value') => {{has-own-property counter 'value'}}
<br>
counter.value => {{counter.value}}
<br>
counter.hasOwnProperty('value') => {{has-own-property counter 'value'}}
<br>
counterValue => {{counterValue}}
<br>
counter.hasOwnProperty('value') => {{has-own-property counter 'value'}}
{
"version": "0.13.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.16.2",
"ember-template-compiler": "2.16.2",
"ember-testing": "2.16.2"
},
"addons": {
"ember-data": "2.16.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment