Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

rsqrt

mikolalysenko13MITdeprecated0.0.0

never use this

Quake style 1.0/sqrt. DO NOT USE

sqrt, reciprocal, quake, fast, inverse, square, root, rsqrt

readme

rsqrt

An attempt to port Quake's fast inverse square root to JS. Do not ever use this.

Install:

npm install rsqrt

Example:

console.log(require("rsqrt")(100.0))  //Prints out approximately 0.1

require("rsqrt")(number)

Computes an approximation for 1.0 / Math.sqrt(number)

Should I ever use this?

No. 1.0 / Math.sqrt is at least twice as fast.

Why did you publish this?

To warn others.

Credits

(c) 2013 Mikola Lysenko. MIT License