chocolateboy

Results 53 issues of chocolateboy

`GM_getMetadata` is only supported by Scriptish, which has been dead for some time. (Additionally) use [`GM_info.script.name`](http://wiki.greasespot.net/GM_info), which is supported by Greasemonkey, Tampermonkey etc.

There are several issues with the regex: - It doesn't handle embedded comments - It considers `functionfoo () { }` to be a valid function declaration - Nit: `\{([\w\W\s\S]*)\}` is...

[`jQuery#has`](https://api.jquery.com/has/) is a filter which returns the subset of a collection's elements which match the selector. `jBone#has` (which is [implemented](https://github.com/kupriyanenko/jbone/blob/80b99258ef0fcd23f9d7451fbe4d87e73ded94f1/src/traversing.js#L61-L67) but [undocumented](https://github.com/kupriyanenko/jbone/wiki/Traversing)) returns a boolean indicating the existence of matches.

Both forms of the `get` method are implemented, i.e.: - `get() => Array` - `get(index: number) => Element` \- but only the latter is documented. This PR adds a link...

``` $ cat template.js | render --engine swig --context package:package.json - { [Error: ENOENT: no such file or directory, open '-'] errno: -2, code: 'ENOENT', syscall: 'open', path: '-' }...

**TL; DR**: any chance of adding support for running an external command after each rename? This would provide an easy way to hook into imdb-rename's metadata without needing to navigate...

As a follow-up to the discussion [here](https://github.com/wycats/javascript-decorators/issues/20), I'd like to suggest a change to the execution order for both "outer" functions (i.e. the `foo` function implementing `@foo`) and "inner" functions...

Short option **bundling** is supported e.g. `-abc` is equivalent to `-a -b -c` if they're boolean options or `-a -bc` if `-b` takes a parameter, but this isn't mentioned directly...

cc @ngryman, @romeovs, @substack First off, thanks for this package! It has clearly served a large number of users very well over the years, and the work that has gone...

It would be nice if there was a way to directly distinguish between feed records and entry records in the output of the CLI command. Currently, they are both emitted...