Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbmeyer committed Aug 27, 2018
1 parent 72b0bae commit f520906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion can-define.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function eachPropertyDescriptor(map, cb){
function getEveryPropertyAndSymbol(obj) {
var props = Object.getOwnPropertyNames(obj);
var symbols = ("getOwnPropertySymbols" in Object) ?
Object.getOwnPropertySymbols(obj) : []
Object.getOwnPropertySymbols(obj) : [];
return props.concat(symbols);
}

Expand Down

0 comments on commit f520906

Please sign in to comment.