UNPKG

snyk-gradle-plugin

Version:
16 lines 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.quoteValueOnWindows = void 0; const os = require("os"); /** * Quotes the value if the OS is Windows. */ function quoteValueOnWindows(arg) { const isWinLocal = /^win/.test(os.platform()); if (isWinLocal) { return `"${arg}"`; } return arg; } exports.quoteValueOnWindows = quoteValueOnWindows; //# sourceMappingURL=utils.js.map