Markus Tran
Markus Tran
The `bulk-replace` package creates a new RegExp every time if one is not provided. Providing a regex offers a significant performance boost. ```javascript // Initial transliteration // str = bulkReplace(str,...
If a nickname is present, it is read as part of the middle name. ```js humanparser.parseName('George Herman “Babe” Ruth') { firstName: 'George', lastName: 'Ruth', middleName: 'Herman “Babe”', fullName: 'George Herman...
I'm trying to use Jimp to process images that are about 70-100 MB in size. However, I get the following error ```javascript // image is 87.7 MB Jimp.read('big-image', (err, img)...
Some nodes in OpenAPI (e.g. the Path Item Object) can have both a `summary` field and a `description` field. Kiota will always use the `description` field if it exists, otherwise...
`'van den'` is treated like a middle name, unlike `'van der'`, `'van de'`, etc. ```js parse('Johannes van den Bosch').last // 'Bosch' parse('Johannes van der Bosch').last // 'van der Bosch' parse('Johannes...
```js parseFullName('Phil Lo Greco') { title: '', first: 'Phil', middle: 'Lo', last: 'Greco', nick: '', suffix: '', error: [] } ```
Converted vapor.js to ECMAScript 6 to keep with the current times and added Babel transpiling.
See #4926
Whenever I try to pass a value of `"default"` into a function, it seems to get ignored. ```typescript const winax = require('winax') const excel = new winax.Object('Excel.Application', { activate: true...
Though not documented, Excel supports the codes `bb` and `bbbb` (for [Buddhist year](https://en.wikipedia.org/wiki/Buddhist_calendar)) in their number formats. This package currently parses those tokens as literals. ```go println(fmt.Sprint(ps.Parse(`bb`))) // Expected: [{Positive...