theprogrammablemind_4wp
Advanced tools
Comparing version 7.5.0-beta.14 to 7.5.0-beta.15
@@ -81,3 +81,11 @@ const { Semantics, Semantic } = require('./src/semantics') | ||
const isA = (hierarchy) => (child, parent) => hierarchy.isA(child, parent) | ||
const isA = (hierarchy) => (child, parent) => { | ||
if (child.marker) { | ||
child = child.marker | ||
} | ||
if (parent.marker) { | ||
parent = parent.marker | ||
} | ||
return hierarchy.isA(child, parent) | ||
} | ||
@@ -84,0 +92,0 @@ const asList = (context) => { |
@@ -64,4 +64,4 @@ { | ||
}, | ||
"version": "7.5.0-beta.14", | ||
"version": "7.5.0-beta.15", | ||
"license": "ISC" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
167229
4949