ml-array-standard-deviation
Advanced tools
Comparing version 1.1.6 to 1.1.7
@@ -8,2 +8,2 @@ import variance from 'ml-array-variance'; | ||
export default standardDeviation; | ||
export { standardDeviation as default }; |
@@ -0,0 +0,0 @@ 'use strict'; |
{ | ||
"name": "ml-array-standard-deviation", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"description": "Get the standard deviation in an array", | ||
@@ -27,5 +27,5 @@ "main": "lib/index.js", | ||
"is-any-array": "^1.0.0", | ||
"ml-array-variance": "^1.1.6" | ||
"ml-array-variance": "^1.1.7" | ||
}, | ||
"gitHead": "d06a16075e582be7b7c553cd1aecbe1d03c64b7a" | ||
"gitHead": "207c5e6e1486b2d22fdfec7b7a3b6867fe50a69e" | ||
} |
@@ -0,0 +0,0 @@ # array-standard-deviation |
@@ -0,0 +0,0 @@ import standardDeviation from '..'; |
@@ -0,0 +0,0 @@ import variance from 'ml-array-variance'; |
@@ -1,2 +0,2 @@ | ||
declare module 'ml-array-standard-deviation' { | ||
declare namespace arrayStandardDeviation { | ||
export interface ArrayStandardDeviationOptions { | ||
@@ -13,11 +13,12 @@ /** | ||
} | ||
} | ||
/** | ||
* Computes the standard deviation of the given values. | ||
*/ | ||
function arrayStandardDeviation( | ||
array: ArrayLike<number>, | ||
options?: ArrayStandardDeviationOptions, | ||
): number; | ||
export = arrayStandardDeviation; | ||
} | ||
/** | ||
* Computes the standard deviation of the given values. | ||
*/ | ||
declare function arrayStandardDeviation( | ||
array: ArrayLike<number>, | ||
options?: arrayStandardDeviation.ArrayStandardDeviationOptions, | ||
): number; | ||
export = arrayStandardDeviation; |
Sorry, the diff of this file is not supported yet
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
4619
8
Updatedml-array-variance@^1.1.7