Yusuke Kawasaki
Yusuke Kawasaki
It crashes with the stack trace as below: ``` node_modules/memcache-plus/lib/connection.js:246 if (deferred.type === 'autodiscovery') { ^ TypeError: Cannot read property 'type' of undefined at Connection.read (node_modules/memcache-plus/lib/connection.js:246:18) at Carrier.emit (events.js:315:20) at...
`EventEmitter#removeListener` only removes 1 listener when an event name given: https://nodejs.org/api/events.html#events_emitter_removelistener_event_listener `event-lite#off` removes all. The undocumented behavior could be fixed. See #1. @JoshuaWise would have a right code to fix...
The small patch draws pixels up to x27 times faster. The current code draws a pixel with spread parameters `drawPixel(output, pos, ...color)`. The magic `...` looks cool but runs slower...
**Type of bug** - [✔] Modernizr error **Describe the bug** Google app https://apps.apple.com/app/id284815942 goes blackout screen when opening a page which contains Modernizr "Video autoplay" feature enabled. - iOS 17.1.2...
image-size library accepts a Buffer as an argument. fast-image-size could do same thing with this patch. Test code: ``` js var request = require("request"); var fast_image_size = require("./"); var url...
README.md description is NOT correct: > X: equivalent to %D in en_US (based on locale) > x: equivalent to %T in en_US (based on locale) strftime.js implementation: ``` en_US: {...
`msgpack.decode()` could read from Uint8Array object seamlessly, as well as Buffer object. `msgpack.encode()` should allow an option to write into Uint8Array object, instead of Buffer object. See also #38
> [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Node.js supports `BigInt` `BigInt64Array` `BigUInt64Array` which are proposed at [stage 3 at TC39](https://github.com/tc39/proposal-bigint). ```sh $ node -e 'console.log(typeof 1n)' bigint $ node -e 'console.log("" + 9007199254740993)' 9007199254740992 $ node -e...
https://github.com/msgpack/msgpack/blob/master/spec.md#formats-timestamp > Timestamp extension type is assigned to extension type -1. It defines 3 formats: 32-bit format, 64-bit format, and 96-bit format. http://frsyuki.hatenablog.com/entry/2017/08/10/144310 (Japanese only)