Sean Vieira

Results 4 issues of Sean Vieira

[Guava](https://code.google.com/p/guava-libraries/) is a set of Java libraries published by Google to make certain patterns in Java easier to work with. I don't know if you were already aware of this,...

AMD / Common JS suggests that it's "how do you manage the importing of dependencies inside your application code" while Volo / Common JS with Browserify / npm suggests that...

## Setup Given the following little program: ```js const postcss = require('postcss'); const rtlcss = require('rtlcss'); const plugin = { postcssPlugin: 'make-declarations-important', Declaration(decl) { if (decl.important) return; decl.important = true;...

Decorators for classes, methods, and object properties are a really nice extension to the language. The only extra one I would _like_ to see is the ability to add decorators...