Skip to content

Commit

Permalink
Transfer ownership to qntm
Browse files Browse the repository at this point in the history
  • Loading branch information
qntm committed May 21, 2017
1 parent 75c90c1 commit f151390
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -89,7 +89,7 @@ module.exports = {
*/
decode: function(str) {
var chars = [...str];
var codePoints = chars.map(ch => ch.codePointAt(0);
var codePoints = chars.map(ch => ch.codePointAt(0));

// Special case for the final character, which may be padding.
var k;
Expand Down
2 changes: 1 addition & 1 deletion lib/bits-to-bits.js
Expand Up @@ -68,4 +68,4 @@ module.exports.leftovers = function(x, y) {
iy_bits: iy_bits
};
};
};
};
8 changes: 4 additions & 4 deletions package.json
@@ -1,11 +1,11 @@
{
"name": "base32768",
"version": "0.0.1",
"version": "0.0.2",
"description": "Binary-to-text encoding highly optimised for UTF-16",
"homepage": "https://github.com/ferno/base32768",
"homepage": "https://github.com/qntm/base32768",
"repository": {
"type": "git",
"url": "git://github.com/ferno/base32768.git"
"url": "git://github.com/qntm/base32768.git"
},
"main": "index.js",
"keywords": [
Expand All @@ -21,6 +21,6 @@
"test": "node test.js"
},
"dependencies": [],
"author": "ferno",
"author": "qntm",
"license": "MIT"
}

0 comments on commit f151390

Please sign in to comment.