number, money and currency formatting library
A TypeScript library for working with IPv4, IPv6 and ASN numbers. It provides representations of these internet protocol numbers with the ability to perform various IP related operations like parsing, validating etc. on them
Reuse objects and functions with style
Curated collection of data structures for the JavaScript/TypeScript.
Fast HTTP benchmarking tool written in Node.js
Number of significand bits for a half-precision floating-point number.
Strict borsh compatible de/serializer
Number of significand bits for a single-precision floating-point number.
Sort an array of numbers
Parse Svelte markup without parsing the script or style tags
OLPC JSON canonicalization
Big Array object that allows to handle arrays with a huge number of elements.
Helper utility modules for collections, arrays, objects and more
Number of significand bits in the high word of a double-precision floating-point number.
A React table component designed to allow presenting thousands of rows of data.
A superset of the JSDOM environment for Jest that respects Node.js globals.
OCSP Stapling implementation
Format numbers.
mjml-hero
Find free port synchronously without callback
JSON.stringify with fixed maximum character width.
ReactTable HOC for fixed columns
Fixed-point number types for JavaScript
Parsing and tokenizing attributes string
A high-precision, high-performance fixed-point decimal type.
A helper crate for the 'fixed-num' crate.
A helper crate for the 'fixed-num' crate.
A helper crate for the 'fixed-num' crate.
no_std Rust decimal: fraction precision never shrinks as integers grow; 4 types from u8(2+2) to u128(38+38) digits
# Addy Allows pretty summations. Instead of writing: (1..5).inject(0) do |memo, num| memo + (num**num) end You write: sum(1..5) do |num| num**num end Personally, I would rather write the latter. ## Usage Install the gem: gem install addy Then use it! require 'addy' class MyClass #include it in a class or in Object to get it everywhere include Addy def my_awesome_adder(range) sum(range) end end When you include addy on a class that implements inject, you don't even need to pass a value to it. Instead it calls sum on your class. require 'addy' class MyClass < Range include Addy def my_awesome_adder sum end end ### Calling It You can call either sum or summation. They're aliases for the same thing. Note: The following assumes Addy is included into Range. When you pass a block to sum it will execute the block on the current number before adding it to the sum. sum(1..5) {|num| num + 1} #=> 20 (1..5).sum {|num| num + 1} #=> 20 You don't have to pass a block though! #this sum(1..5) #=> 15 #and (1..5).sum #=> 15 #are equivalent to sum(1..5) {|num| num} #=> 15 #and (1..5).sum {|num| num} #=> 15 ### Input Ranges and numeric arrays both work well. sum(1..5) #=> 15 sum([1,2,3,4,5]) #=> 15 ## Note on Patches/Pull Requests * Fork the project. * Make your feature addition or bug fix. * Add tests for it. This is important so I don't break it in a future version unintentionally. * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) * Send me a pull request. Bonus points for topic branches. ## Copyright Copyright (c) 2010 Allen Madsen. See LICENSE for details. PS: Isn't it ridiculous how much documentation I wrote for one function?
Diff and patch tables
Diff and patch tables
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.