Malicious module that attacks express.js/stripe projects
Multiply a double-precision floating-point number by an integer power of two.
A JavaScript library that breaks strings into their individual user-perceived characters (including emojis!)
bigint to buffer conversion with native support
Lock on asynchronous code
A simple set of utility functions for colours.
No description provided.
AsyncAPI schema versions
Node addon for string extraction for msgpackr
A tool for creating .d.ts bundles
node.js implementation of James Coglan's "Sylvester" matrix math library.
Transform a string between `camelCase`, `PascalCase`, `Capital Case`, `snake_case`, `kebab-case`, `CONSTANT_CASE` and others
## Installation
A jQuery plugin that adds cross-browser mouse wheel support.
A JavaScript text diff implementation.
Two-factor authentication for Node.js. One-time passcode generator (HOTP/TOTP) with support for Google Authenticator.
A real lua VM with JS bindings made with webassembly
Use two values display syntax for inner and outer display types.
Blazing-fast pixel-by-pixel image comparison with block-based optimization. 1.5x times faster than pixelmatch
AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native
A JavaScript library that breaks strings into their individual user-perceived characters. It supports emojis!
two functions: One that returns true, one that returns false
A functional typescript implementation of the PCG family random number generators
Utility methods and plugin for cssnano projects
Lets multiply
This gem uses two lists (descriptive words and nouns) and multiplies them with each and another resulting in a list of mostly meaningful and often silly name combinations.
A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. In other words, a prime number is a whole number greater than 1 that cannot be formed by multiplying two smaller natural numbers.
A linear algebra library cooperating with NArray. This library calls blas and lapack routines for fast computations. This library has following functionalities. * xGEMM (multiply two matrices and add other matrix) * Solve LLS(Least Square Sum) problems * Computing determinant (using QR decomposition) * Solve eigenproblems (compute eigenvalues and eigenvectors) * (Pivoted) LU decompotision * SVD(Singular value decomposition) * QR decomposition * Cholesky decomposition
== Description A Rack compatible JSON-RPC2 server domain specific language (DSL) - allows JSONRPC APIs to be defined as mountable Rack applications with inline documentation, authentication and type checking. e.g. class Calculator < JSONRPC2::Interface title "JSON-RPC2 Calculator" introduction "This interface allows basic maths calculations via JSON-RPC2" auth_with JSONRPC2::BasicAuth.new({'user' => 'secretword'}) section 'Simple Ops' do desc 'Multiply two numbers' param 'a', 'Number', 'a' param 'b', 'Number', 'b' result 'Number', 'a * b' def mul args args['a'] * args['b'] end desc 'Add numbers' example "Calculate 1 + 1 = 2", :params => { 'a' => 1, 'b' => 1}, :result => 2 param 'a', 'Number', 'First number' param 'b', 'Number', 'Second number' optional 'c', 'Number', 'Third number' result 'Number', 'a + b + c' def sum args val = args['a'] + args['b'] val += args['c'] if args['c'] val end end end