anseki

Results 8 issues of anseki

I propose a feature that let we can specify `nvmw use v2.3.2` instead of `nvmw use iojs-v2.3.2`. Sometimes, I type `nvmw use iojs v2.3.2` by mistake. I think that no...

Hi, thank you for the great module. So, `response.writeHead` method is called twice when the request is not a `GET` request. For example: Save a content file to `public/index.html`: ```html...

Hi thank you for the very useful library. It seems that this line: ``` Load source image from the memory after initialized. Functionality is identical to `Clipper(path, callback)`. ``` https://github.com/superRaytin/image-clipper/blob/master/README.md?plain=1#L156...

Hi, thank you for the great library. I have a question about the document for snapshot with `db.get()`. https://github.com/Level/classic-level#dbgetkey-options-callback The document said, the snapshot is created at the time `db.get()`...

Issue: https://github.com/jsoverson/preprocess/issues/77#issuecomment-120682188 In JavaScript code, that regexp stops reading immediately it found `*` without checking `*/` or end of line, etc.. Because that regexp accepts these as the end of...

I mistakenly wrote `@ifdeg DEBUG` instead of `@ifdef DEBUG`, and then I got an error. Of course, this typo was my mistake. And I understood that by an error. But,...

enhancement

A following [code](https://github.com/jsoverson/preprocess/blob/master/lib/preprocess.js#L395) in `getDeepPropFromObj` function in `preprocess.js` doesn't work: ``` js propPath.replace(/\[([^\]+?])\]/g, '.$1'); ``` The `.replace()` method returns a replaced string, and it doesn't change a original string (i.e....

The string parameters that include the quotes or commas are not parsed correctly. For example: ``` js var src = 'foo\n\nbar'; console.log('==== SRC: ' + src); console.log('==== RES: ' +...