Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Dec 22, 2014
1 parent 37f2250 commit 580ca13
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"description": "64-bit unsigned integer arithmetic code bricks for JavaScript",
"ignore": [
"js/index.js",
Expand Down
19 changes: 19 additions & 0 deletions js/dist/uint64.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,25 @@ var big64 = function ( a , o ) {

exports.big64 = big64 ;

/* js/src/compare.js */

var compare = function ( a , b ) {

return a[0] < b[0] ? -1 : a[0] > b[0] ? 1 :
a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : 0 ;

} ;

exports.compare = compare ;

/* js/src/limits.js */

/** 0 */
exports.min = [ 0x00000000 , 0x00000000 ] ;

/** 2^64 - 1 */
exports.max = [ 0xffffffff , 0xffffffff ] ;

/* js/src/not64.js */

var not64 = function ( a ) {
Expand Down
2 changes: 1 addition & 1 deletion js/dist/uint64.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/dist/uint64.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"description": "64-bit unsigned integer arithmetic code bricks for JavaScript",
"dependencies": {},
"license": "AGPL-3.0",
Expand Down

0 comments on commit 580ca13

Please sign in to comment.