Glen Huang

Results 16 issues of Glen Huang

Currently, some CLI options are critical to the action code. Having to specify them on a command line (or inside a Makefile) means scattering of the code: - `--export-var` If...

feature

This could be helpful when using jsDump to show object diffs. If you find the opportunity, please update this package on npm. I sent a pull request to mocha (https://github.com/visionmedia/mocha/pull/589)...

Inspired by https://github.com/ai/autoprefixer A few things prevent me to use it directly for Roole: - The AST generated by `css-parse` is incompatible with the one generated by Roole. So we...

``` @if not $even($num) and not $prime($num) { } ```

``` $arg = a b; $func = @function $p1, $p2 { @return $p1, $p2; }; $func(...$arg); // a, b ```

``` $func = @function $p1, $p2 = 'b', $p3 = 'c' { @return $p1, $p2, $p3 } $func(1, $p3 = 3); // 1, 'b', 3 ```

`[0 1] + 2` -> `[0 1 2]` `-1 + [0, 1]` -> `[-1, 0, 1]` `[0 1] + [2, 3]` -> `[0 1 2, 3]`

`@namespace` `foo|button, *|button, |button`

``` abc is Abc ``` ``` .button display: inline-block #submit @extend .BUTTON ```