Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ml-array-standard-deviation

Package Overview
Dependencies
Maintainers
5
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ml-array-standard-deviation - npm Package Compare versions

Comparing version 1.1.6 to 1.1.7

2

lib-es6/index.js

@@ -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

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