On a related note, something I've always wondered about is why there isn't a native host object that represents the UA? Is there anything, save for tons of live code parsing UA strings, preventing this?
Seriously, even this 'lightweight' parser is around 7.6kb and a couple hundred lines of code -- and I'm not trying to knock the OP's work by any stretch. It just seems crazy that we still have to muck with this manual string parsing!
The HTTP header would be disconnected from this effort, and wouldn't necessarily have to change. The UA object would be populated from what the browser knows about its own operating environment. Not looking to change the way anything works, just looking for a solution to the 100's of different UA parsers that are out there.
5 comments
[ 3.9 ms ] story [ 77.6 ms ] threadSeriously, even this 'lightweight' parser is around 7.6kb and a couple hundred lines of code -- and I'm not trying to knock the OP's work by any stretch. It just seems crazy that we still have to muck with this manual string parsing!
Why can't we just have:
The idea would be to relieve the JS community from having to continually support this meta-data retrieval.