JSPM

faster-median

0.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 29753
  • Score
    100M100P100Q148112F
  • License CC0-1.0

🔥 A Quick Way to get the Median Value of an Array of Numbers (Typed or Untyped)

Package Exports

  • faster-median

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (faster-median) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

faster-median

🔥 A Quick Way to get the Median Value of an Array of Numbers (Typed or Untyped)

install

npm install faster-median

usage

const fasterMedian = require("faster-median");

const nums = [0, 56, 123, 63, 763, ...];
fasterMedian({ nums, no_data: 0})