Allow private methods in objects test

This commit is contained in:
Jordan Eldredge 2019-08-24 22:17:28 -07:00
parent b52879475f
commit 948c96dc64

View file

@ -6,6 +6,7 @@ const getMakiMethods = obj =>
return (
typeof obj[name] === "function" &&
!name.startsWith("js_") &&
!name.startsWith("_") &&
name !== "constructor"
);
});