jarchi-utils
v0.0.1
Published
Pure JavaScript implementations of jArchi methods.
Readme
How to use
isAllowedRelationship
import { isAllowedRelationship } from "jarchi-utils";
isAllowedRelationship(
"flow-relationship",
"business-actor",
"application-component"
);
// truefindAllowedRelationships
import { findAllowedRelationships } from "jarchi-utils";
findAllowedRelationships("business-actor", "application-component");
// [
// 'flow-relationship',
// 'association-relationship',
// 'triggering-relationship',
// 'serving-relationship'
// ]