Blog

String.prototype.expandTabs()

I personally love both JavaScript and Python. For this reason, from time to time I like to port functions that are available in Python, over to JavaScript. The following is a port of the expandTabs function. The biggest difference between this JavaScript version and the Python version is the limitation Read more…

By Chris West, ago
Blog

String.protototype.toCharCodes()

One of the functions that didn’t make the cut for jPaq is String.prototype.toCharCodes().  The reason is I don’t feel that it is a function that many people are looking for.  Still, if you are looking for a good implementation for it, you can use this: [sourcecode language=”javascript”] String.prototype.toCharCodes = function() Read more…

By Chris West, ago