Vaughan Rouesnel

Results 201 issues of Vaughan Rouesnel

``` if (isEqual(this.props.draw, prevProps.draw) || this.props.position !== prevProps.position) { return false; } ``` If `draw` is set to something, this equality check will fail causing re-rendering every time there is...

### Modification Proposal Currently, `stats.toString()` is printed on the `compiler.hooks.afterDone` hook, inside a `process.nextTick()` call. I want to print something after that stats have all printed. The `nextTick` means that...

If it cannot connect to the server, the app will crash because there is no `error` event handler. The error handler in the example is only attached after `open`. ```js...

Is it possible to forward messages? ## Use case ``` Chrome Extension Chrome Native Messaging Host Electron App ``` My Electron app wants to call a method of the Chrome...

Currently: ``` /* * Vendor "tab-size" support. */ tab-size() vendor('tab-size', arguments, only: moz o) ``` Chrome supports since version 21.

E.g. ``` a is b ``` becomes: ``` a === b ``` In the `snippets.cson`: ``` '===': 'prefix': 'is' 'body': '=== ' 'activation-key': 'space' ``` This is similar functionality offered...

enhancement

I encountered a problem where the module that could not be updated was not in the `moduleMap` resulting in `- undefined` being printed when listing the modules that couldn't be...

This is supported in default preview. > double clicking an element in the Markdown preview will automatically open the editor for the file and scroll to the line nearest the...

https://github.com/zkat/ssri/blob/latest/index.js#L121-L133 ```js module.exports.parse = parse function parse (sri, opts) { opts = opts || {} if (typeof sri === 'string') { return _parse(sri, opts) } else if (sri.algorithm && sri.digest)...