It looks like a number of things were removed because they could be directly imported.
toLowerCase/toUpperCase are not possible to optimize to much more than just a function call, and can be directly imported.
You should be able to import toLowerCase/toUpperCase using:
Function.prototype.call.bind(String.prototype.toLowerCase)
This is optimized in V8 and SpiderMonkey AFAIK.