Add support for RegExp separators to `str_proto_split` in [`String.c`](https://github.com/ndreynolds/flathead/blob/master/src/runtime/lib/String.c) and new tests in [`test_string_global.js`](https://github.com/ndreynolds/flathead/blob/master/test/test_string_global.js). Currently, only a string can be given as the separator, but the spec also allows a RegExp, e.g. ``` javascript "Hello 1 word. Sentence number 2.".split(/(\d)/) // ["Hello ", "1", " word. Sentence number ", "2", "."] ```