![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Awesome logical and bitwise operators with support for
BigInt
andTypedArray
npm install logiq
import {logical, bitwise, bigint, typedArray} from 'logiq';
logical.xor(true, false);
//=> true
bitwise.xor(0b1100, 0b1010);
//=> 6
bigint.xor(0b1100n, 0b1010n);
//=> 6n
typedArray.xor(Uint8Array.of(255, 127, 0), Uint8Array.of(255));
//=> Uint8Array(3) [ 0, 128, 255 ]
import {logical} from 'logiq';
Provides logical connectives that return boolean
values.
Accepts arguments of type any
and converts them to boolean
values before processing.
import {bitwise} from 'logiq';
Provides bitwise operators for the basic number
type. All numbers in JavaScript are signed, so some functions may flip the sign bit and yield unexpected results.
import {bigint} from 'logiq';
Provides bitwise operators for the bigint
type. Operands are automatically converted to bigint
before processing. Remember that bigint
is signed, so some functions may flip the sign bit and yield unexpected results.
import {typedArray} from 'logiq';
Provides bitwise operators for all of the built-in TypedArray
types. Under the hood, the module uses Uint8Array
for compatibility between different TypedArray
variants. The result is also returned as a Uint8Array
.
If the operands differ in byte length, the shorter of the two will be repeated as many times as needed to match the other's length. This is useful in cases where a mask needs to be applied to every block of data in an array.
Each logiq
module exports the same set of functions. All binary operators are variadic and left-associative. For example, and(a, b, c)
is equivalent to (a AND b) AND c
.
Performs logical negation or bitwise NOT.
Performs logical conjunction or bitwise AND.
Performs logical disjunction or bitwise OR.
Performs logical implication or bitwise IMPLY.
Performs logical exclusive disjunction or bitwise XOR.
Performs logical alternative denial or bitwise NAND.
Performs logical joint denial or bitwise NOR.
Performs logical nonimplication or bitwise NIMPLY.
Performs logical biconditional or bitwise XNOR.
FAQs
Awesome logical and bitwise operators with support for TypedArrays
We found that logiq demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.