
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
@stdlib/constants-unicode-max
Advanced tools
Maximum Unicode code point.
npm install @stdlib/constants-unicode-max
var UNICODE_MAX = require( '@stdlib/constants-unicode-max' );
Maximum Unicode code point.
var bool = ( UNICODE_MAX === 1114111 );
// returns true
var randu = require( '@stdlib/random-base-randu' );
var floor = require( '@stdlib/math-base-special-floor' );
var fromCodePoint = require( '@stdlib/string-from-code-point' );
var UNICODE_MAX = require( '@stdlib/constants-unicode-max' );
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = floor( randu() * UNICODE_MAX );
console.log( fromCodePoint( x ) );
}
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
0.0.4 (2021-06-27)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.3">FAQs
Maximum Unicode code point.
The npm package @stdlib/constants-unicode-max receives a total of 2,422 weekly downloads. As such, @stdlib/constants-unicode-max popularity was classified as popular.
We found that @stdlib/constants-unicode-max demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.