This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm ERR! TypeError: Cannot read property '_id' of undefined | |
| npm ERR! at /usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/load-package-defaults.js:13:43 | |
| npm ERR! at /usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/async-map.js:52:35 | |
| npm ERR! at Array.forEach (native) | |
| npm ERR! at /usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/async-map.js:52:11 | |
| npm ERR! at Array.forEach (native) | |
| npm ERR! at asyncMap (/usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/async-map.js:51:8) | |
| npm ERR! at loadPackageDefaults (/usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/load-package-defaults.js:11:3) | |
| npm ERR! at /usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/build.js:151:7 | |
| npm ERR! at P (/usr/local/lib/node/.npm/npm/0.2.12-1/package/lib/utils/read-json.js:38:22) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Tor-Ivar Valåmo@tivlg ~ | |
| $ npm list browscap | |
| npm info it worked if it ends with ok | |
| npm info using npm@0.2.12-1 | |
| npm info using node@v0.2.6 | |
| browscap@0.1.0 PHP's get_browser/browscap.ini for Node =dangrossman remote | |
| browscap@0.1.1 PHP's get_browser/browscap.ini for Node =dangrossman remote | |
| browscap@0.1.2 PHP's get_browser/browscap.ini for Node =dangrossman installed remote | |
| browscap@0.1.3 PHP's get_browser/browscap.ini for Node =dangrossman latest remote | |
| npm ok |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var types = { | |
| '.3gp' : 'video/3gpp', | |
| '.a' : 'application/octet-stream', | |
| '.ai' : 'application/postscript', | |
| '.aif' : 'audio/x-aiff', | |
| '.aiff' : 'audio/x-aiff', | |
| '.asc' : 'application/pgp-signature', | |
| '.asf' : 'video/x-ms-asf', | |
| '.asm' : 'text/x-asm', | |
| '.asx' : 'video/x-ms-asf', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asciimo@0.2.4 =marak remote | |
| asciimo@0.2.5 =marak remote | |
| asciimo@0.3.0 =marak remote | |
| npmsciimo@0.3.1 =marak latest remote ok | |
| ash@0.0.1rc =capecodehq latest dev remote | |
| assertn@0.1.01 =mkitt latest stable remote |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/lib/buffer.js b/lib/buffer.js | |
| index ecb25b7..b68e13b 100644 | |
| --- a/lib/buffer.js | |
| +++ b/lib/buffer.js | |
| @@ -91,6 +91,9 @@ SlowBuffer.prototype.slice = function (start, end) { | |
| return new Buffer(this, end - start, +start); | |
| }; | |
| +SlowBuffer.prototype.indexOf = function indexOf(pattern, offset, max_offset) { | |
| + return this.indexOf(pattern, offset, max_offset) |