Paul Salaets
Paul Salaets
You can achieve this using [buffer-to-vinyl](https://www.npmjs.com/package/buffer-to-vinyl). ``` js var b2v = require('buffer-to-vinyl'); var gulpNgConfig = require('gulp-ng-config'); gulp.task('make-config', function() { var json = JSON.stringify({ // your config here }); return b2v.stream(new...
I looked at the code and I think this is happening because the text provider has some helper properties that aren't part of the public api but they do get...
To resolve this we can change providers ~~~diff +var privateHelper = 'blah'; var provider = { - privateHelper: 'blah', builtInGenerator: function() { - return this.privateHelper; + return privateHelper; } };...
None as far as I know. I'm just working around it in my project. On Fri, Jun 19, 2020, 7:08 AM Craig wrote: > Is there any movement on this?...
That looks like a bug. Are you able to show your code so I can see how you are calling `checkIntersection`? If not, do you remember what values were passed...
Hmm everything looks correct there. Can you print out `lineA` and `lineB` with `console.log()` and show me what values are being passed into the function?
You were hoping for a friendlier error? or some other result?
> My expectation was that the unmatched ) would be ignored. That's an interesting idea. This doesn't exist yet, but I could imagine some sort of "unexpected character handler" that...
This seems like the same kind of problem as #4. Do you think some kind of i18n support would cover it? For each supported language, the bundle would contain: -...
I think I have this working. The changes are in [psalaets/excel-formula-tokenizer](https://github.com/psalaets/excel-formula-tokenizer) version 2.3.0. Can you try running your code with [email protected] and excel-formula-ast (latest)? Edit: okay I'm wrong, still not...