Andreas Kalsch

Results 23 issues of Andreas Kalsch

Some libraries (example: underscore) are using checks whether module.exports is defined, but when I define a module with Transport/D and injects. module and exports are defined but module.exports (=== exports)...

Example: ``` require.def({ "underscorex": { injects: [ 'require', 'exports', 'module' ], factory: function (require, exports, module) { var _ = exports = module.exports = require('underscore'); console.log(_) // libary defined here...

``` $ node all.js set up suite [6/1] async: test toArray OK ... [22/12] fs: test walk files pre order FAIL AssertionError: "[\"assets_TEST/walk\",\"assets_TEST/walk/dir1\",\"assets_TEST/walk/dir1/1.txt\",\"assets_TEST/walk/dir2\",\"assets_TEST/walk/dir2/dir22\",\"assets_TEST/walk/dir2/dir22/22.txt\",\"assets_TEST/walk/dir2/2.txt\",\"assets_TEST/walk/1.txt\"]" == "[\"assets_TEST/walk\",\"assets_TEST/walk/dir2\",\"assets_TEST/walk/dir2/dir22\",\"assets_TEST/walk/dir2/dir22/22.txt\",\"assets_TEST/walk/dir2/2.txt\",\"assets_TEST/walk/dir1\",\"assets_TEST/walk/dir1/1.txt\",\"assets_TEST/walk/1.txt\"]" at /home/andi/.node_libraries/async.js/test/fs.test.js:192:24 at handler (/home/andi/.node_libraries/async.js/lib/async/async.js:359:32)...

This is generated code from CoffeeScript that runs in node 0.4.5 and with latest asyncjs. I use the "=>" operator, that prefixes a function's body and preserves the current context...

Consequent feature like in toArray

It seems that there is still no way to reset the generator to the first value. I need to recreate the whole thing to do this. I can send you...

I want to use your library with a version check to support SDK vs < 11. I added this to my app s AndroidManifest.xml: On building, manifest merger still shows...

The callback may cross the lifetimes of different activity instances. Changing orientation while the permission dialog is showing up lets the callback code break because it references members of the...

Input: ``` f = (function(a, b) { function id(s) { return s; } return function m(c){ let s = 0 for (let i = 0; i < a; i++) s...