New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ariesclark/number

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ariesclark/number

Fast, efficient, and easy-to-use number extensions for TypeScript.

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-55.56%
Maintainers
1
Weekly downloads
 
Created
Source
@ariesclark/number logo

Fast, efficient, and easy-to-use number extensions for TypeScript.

Packages

@ariesclark/extensions @ariesclark/array @ariesclark/number @ariesclark/object @ariesclark/string @ariesclark/time @ariesclark/function

Installation

npm install @ariesclark/extensions
# Or directly, if you only need the number extension.
npm install @ariesclark/number

Documentation

clamp (function)

Clamps a number within the range specified by the minimum and maximum values.

Parameters:

  • /**
  • The value to clamp. */ value (number)
  • /**
  • The minimum value, inclusive. */ minimum (number)
  • /**
  • The maximum value, inclusive. */ maximum (number)

returns: number

randomFloat (function)

[object Object],[object Object],[object Object],[object Object],[object Object]

RandomFunction (type)

A random number generator function that returns a float between 0 and 1.

defaultRandom (variable: RandomFunction)

The default random number generator function.

randomFunction (function)

Get the current random number generator function, or set a new one.

Parameters:

  • newValue (RandomFunction) - The new random number generator function, or undefined to get the current value, or null to reset to the default.

returns: RandomFunction

import { randomFunction } from '@ariesclark/number/random-function';
import { randomInt } from '@ariesclark/number/random-int';

randomInt(); // Random number between 0 and 100.
randomFunction(() => 0.5);

randomInt(); // Always 50.

pseudoRandomFloat (function)

Create a pseudo-random number generator from a seed.

Parameters:

  • seed (string)

returns: RandomFunction

import {
  pseudoRandomFloat,
  randomFunction,
  randomInt
} from '@ariesclark/number';

randomFunction(pseudoRandomFloat('hello world'));
randomInt(); // Predictable random number, based on the seed.

randomInt (function)

Get a random value between minimum and maximum.

Parameters:

  • /**
  • The minimum value, inclusive, defaults to 0 */ minimum (number)
  • /**
  • The maximum value, inclusive, defaults to 100 */ maximum (number)
  • /**
  • The random number generator function. */ random (RandomFunction)

returns: number

`{ EPSILON, MAX_SAFE_INTEGER, MAX_VALUE, MIN_SAFE_INTEGER, MIN_VALUE, NEGATIVE_INFINITY,

// eslint-disable-next-line no-shadow-restricted-names NaN, POSITIVE_INFINITY, isFinite, isInteger, isNaN, isSafeInteger, parseFloat, parseInt }` (variable)

sum (function)

Returns the sum of the numbers.

Parameters:

  • numbers (number[]) - The numbers to sum.

returns: number

average (function)

Returns the average of the numbers.

Parameters:

  • numbers (number[]) - The numbers to average.

returns: number

median (function)

Returns the median of the numbers.

Parameters:

  • numbers (number[]) - The numbers to find the median of.

returns: number

Keywords

FAQs

Package last updated on 21 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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