UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

20 lines (19 loc) 672 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MULTI_GLOB = exports.GLOB = void 0; exports.isHandleGlobMessage = isHandleGlobMessage; exports.isHandleMultiGlobMessage = isHandleMultiGlobMessage; exports.GLOB = 'GLOB'; function isHandleGlobMessage(message) { return (typeof message === 'object' && message !== null && 'type' in message && message['type'] === exports.GLOB); } exports.MULTI_GLOB = 'MULTI_GLOB'; function isHandleMultiGlobMessage(message) { return (typeof message === 'object' && message !== null && 'type' in message && message['type'] === exports.MULTI_GLOB); }