@boostercloud/framework-common-helpers
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,4 @@ | ||
/** | ||
* Removes duplicates from an array. | ||
*/ | ||
export declare function unique<T>(items: Array<T>): Array<T>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.unique = void 0; | ||
/** | ||
* Removes duplicates from an array. | ||
*/ | ||
function unique(items) { | ||
@@ -5,0 +8,0 @@ return Array.from(new Set(items)); |
{ | ||
"name": "@boostercloud/framework-common-helpers", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Contains Booster common helpers used by the core and provider packages", | ||
@@ -26,3 +26,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@boostercloud/framework-types": "^1.0.0", | ||
"@boostercloud/framework-types": "^1.0.1", | ||
"child-process-promise": "^2.2.1", | ||
@@ -33,3 +33,3 @@ "tslib": "^2.4.0", | ||
"devDependencies": { | ||
"@boostercloud/eslint-config": "^1.0.0", | ||
"@boostercloud/eslint-config": "^1.0.1", | ||
"@types/chai": "4.2.18", | ||
@@ -36,0 +36,0 @@ "@types/chai-as-promised": "7.1.4", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15137
244