UNPKG

dependency-cruiser

Version:

Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.

12 lines (9 loc) 254 B
"use strict"; /** * @param {any} pRule a dependency-cruiser rule * @returns {boolean} whether or not the rule is 'module only' */ function isModuleOnlyRule(pRule){ return pRule.from.hasOwnProperty("orphan"); } module.exports = isModuleOnlyRule;