Socket
Socket
Sign inDemoInstall

azure-pipelines-task-lib

Package Overview
Dependencies
Maintainers
5
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-pipelines-task-lib - npm Package Compare versions

Comparing version 4.3.1 to 4.4.0

1

mock-task.js

@@ -62,2 +62,3 @@ "use strict";

module.exports.getBoolInput = task.getBoolInput;
module.exports.getBoolFeatureFlag = task.getBoolFeatureFlag;
module.exports.getDelimitedInput = task.getDelimitedInput;

@@ -64,0 +65,0 @@ module.exports.filePathSupplied = task.filePathSupplied;

2

package.json
{
"name": "azure-pipelines-task-lib",
"version": "4.3.1",
"version": "4.4.0",
"description": "Azure Pipelines Task SDK",

@@ -5,0 +5,0 @@ "main": "./task.js",

@@ -135,2 +135,10 @@ /// <reference types="node" />

/**
* Gets the value of an feature flag and converts to a bool.
*
* @param name name of the feature flag to get.
* @param defaultValue default value of the feature flag in case it's not found in env. (optional. Default value = false)
* @returns boolean
*/
export declare function getBoolFeatureFlag(ffName: string, defaultValue?: boolean): boolean;
/**
* Gets the value of an input and splits the value using a delimiter (space, comma, etc).

@@ -137,0 +145,0 @@ * Empty values are removed. This function is useful for splitting an input containing a simple

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc