bendiy
bendiy
@Julien-R44 I'm seeing the same issue. Did you find a workaround to allow `emoji-mart-vue` and `vue-phone-number-input` to work together?
@Julien-R44 Thanks. I ended up removing `emoji-mart-vue` and switching to `vue-twemoji-picker` with minimal changes to my codebase. https://kevinfaguiar.github.io/vue-twemoji-picker/docs/getting-started/
I think I've seen 5 or 6 different version of `require` support for `PL/v8` on GitHub. I've got one that browserify's npm modules and sticks them in a `node_modules` table...
Please make sure to support a way for modules to be loaded from a table. Either some default in a `plv8` schema or one set through a config setting. It...
When I created a node shim for another JavaScript engine, I found these modules helpful in adding some core node.js API features in pure JavaScript: ``` "dependencies": { "buffer": "^4.6.0", ...
#227 should fix any PostgreSQL or plpgsql errors. If you generate an error in JavaScript, the error state is still `XX000`: ``` do language plv8 $$ throw new Error('foo'); $$;...
@mbirth Thanks for the patch. It got me close. If you're in Windows and your remote server is Mac or linux this is how I got it working: ``` diff...
Here's a pull request: https://github.com/Kindari/SublimeXdebug/pull/70
This commit was a good switching guide for me to go from `redux-router` to `redux-simple-router`: https://github.com/jlongster/react-redux-universal-hot-example/commit/e13b93518c8c9b5524ad50f1c566ed6c480c1888?diff=split Like @kmudrick I was having issues getting `redux-router` working in a universal app.
I think I have something working for question 1 above. Please let me know if this is a good approach and on questions 2 & 3: ```csharp public class JobScheduleCheckAndSubmit...