Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jun 20, 2024
1 parent 7b99976 commit 1d0bb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wombat.js
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ Wombat.prototype.defaultProxyGet = function(obj, prop, ownProps, fnCache) {
var cachedFN = fnCache[prop];
if (!cachedFN || cachedFN.original !== retVal) {
const boundFn = retVal.bind(obj);
const SKIP_OWN_PROPS = ["name", "length", "__WB_is_native_func__"];
const SKIP_OWN_PROPS = ['name', 'length', '__WB_is_native_func__'];
for (const ownProp of Object.getOwnPropertyNames(retVal)) {
if (!SKIP_OWN_PROPS.includes(ownProp)) {
boundFn[ownProp] = retVal[ownProp];
Expand Down

0 comments on commit 1d0bb53

Please sign in to comment.