Socket
Socket
Sign inDemoInstall

jstat

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.1 to 1.7.2

6

doc/md/distributions.md

@@ -526,2 +526,6 @@ ## Distributions

#### jStat.poisson.sample( l )
Returns a random number whose distribution is the Poisson distribution with rate parameter l (lamda)
### jStat.triangular

@@ -589,2 +593,2 @@

Returns the variance of the Uniform distribution from a to b.
Returns the variance of the Uniform distribution from a to b.

6

package.json
{
"name" : "jstat",
"version" : "1.7.1",
"version" : "1.7.2",
"description" : "Statistical Library for JavaScript",

@@ -21,4 +21,4 @@ "homepage" : "http://github.com/jstat/jstat",

"devDependencies" : {
"uglify-js" : "1.2.3",
"vows" : "https://github.com/flatiron/vows/archive/master.tar.gz"
"uglify-js" : ">=2.6.0",
"vows" : "^0.8.2"
},

@@ -25,0 +25,0 @@ "scripts" : {

@@ -667,4 +667,5 @@ var jStat = (function(Math, undefined) {

for (var i = 0; i < funcs.length; i++) (function(passfunc) {
jProto[passfunc] = new Function(
'return jStat(jStat.' + passfunc + '.apply(null, arguments));');
jProto[passfunc] = function() {
return jStat(jStat[passfunc].apply(null, arguments));
};
})(funcs[i]);

@@ -671,0 +672,0 @@ })('create zeros ones rand identity'.split(' '));

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc