@graphql-inspector/action
Version:
GraphQL Inspector functionality for GitHub Actions
11 lines (10 loc) • 372 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.findChangesByPath = findChangesByPath;
exports.findFirstChangeByPath = findFirstChangeByPath;
function findChangesByPath(changes, path) {
return changes.filter(c => c.path === path);
}
function findFirstChangeByPath(changes, path) {
return findChangesByPath(changes, path)[0];
}
;