Skip to content

Commit

Permalink
Fixed missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Nov 23, 2020
1 parent 381a95e commit b1c021f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/utils/ObjectUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ export default class ObjectUtils {
}
}

static isFunction(obj) {
return !!(obj && obj.constructor && obj.call && obj.apply);
}

static filter(value, fields, filterValue) {
var filteredItems = [];

Expand Down

0 comments on commit b1c021f

Please sign in to comment.