Skip to content

Commit

Permalink
Suppress proto in jshint in isTech
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev committed Nov 3, 2015
1 parent 80c5172 commit b4bc4b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/js/tech/tech.js
Expand Up @@ -438,7 +438,9 @@ class Tech extends Component {
}

static isTech(component) {
/* jshint proto:true */
let proto = component.__proto__;
/* jshint proto:false */
if (Object.getPrototypeOf) {
proto = Object.getPrototypeOf(component);
}
Expand Down

0 comments on commit b4bc4b8

Please sign in to comment.