Brian Gates
Brian Gates
I'm using node.js and would like the server and client to share the validation rules so they're on the same page. Any thoughts on how this can be accomplished?
Start with `ctrl+shift+b`.
``` C:\Users\Heavy\AppData\Roaming\npm\node_modules\ember-tools\node_modules\handlebars\lib\handlebars\compiler\parser.js:112 throw new Error(str); ^ Error: Lexical error on line 1. Unrecognized text. ```
There's a lot of ambiguity in the examples that slowed me down in understanding what exactly was going on. I think if the examples were fully functional, it would help...
``` var foo = _.wrapCallback(function (thing, done){ done(null, thing); }); foo('bar').apply(_.log); // bar _.curry(foo)('bar').apply(_.log); // ^ // TypeError: object is not a function ``` The issue is that wrapCallback handles...
Object path has an incredibly useful way of retrieving data from complex object structures. https://github.com/mariocasciaro/object-path Would love to see an API like this: ``` _([{ foo: { bar: [1,2,3] }}])...
All it takes is one link for a chain to be weak, I'm curious if anyone has any good ways to locate these links for optimization purposes.
See the subject. I'm not sure if this is really a bug, per se, but it's certainly an unintuitive problem. In my particular situation I'm working with a form that...