Brian Leishman

Results 11 issues of Brian Leishman

We use a service called "heap", that provides just an interface in their documentation for typescript users. In our project we have a custom `@types` folder where I've been putting...

documentation

So far I've gotten most of our 3rd party libraries to import correctly, except for TinyMCE, which is being used like this ```ts import tinymce from 'tinymce/tinymce' tinymce.init({ selector: '#blog-body',...

Added support for setting custom separators via `slug.SetSeparator("-")` This keeps the backwards compatibility, passes all the tests, and allows for the use of longer strings, i.e. not just single characters....

Just the title :) apt is just newer apt-get

With the latest version I'm still getting this error in our project ``` TSCC: The compilation has terminated with an unexpected error. TSCC: TypeError: Cannot read property 'resolvedModules' of undefined...

Go program example: ```go package main import ( "fmt" "github.com/dop251/goja" _ "embed" ) //go:embed handler.js var js string type Data struct { Map map[string]any `json:"map"` } func main() { vm...

Arrow key movements and scroll buttons weren't triggering/creating synthetic input and change events.

Added comma support and tests for this format: 04/02/2014, 04:08:09 4/2/2014, 04:08:09 04/02/2014, 04:08 AM 04/02/2014, 04:08 PM If I use luxon's `date.toLocaleString(luxon.DateTime.DATETIME_SHORT)` on my machine, the formats with the...

Relevant issue: https://github.com/taxjar/taxjar-go/issues/13 This makes it possible to update dollar amounts of an order/transaction to zero. ⚠️ **This is a breaking change!** ⚠️ Normally I wouldn't request a breaking change...

This type ```golang type UpdateOrderParams struct { TransactionID string `json:"transaction_id,omitempty"` TransactionDate string `json:"transaction_date,omitempty"` FromCountry string `json:"from_country,omitempty"` FromZip string `json:"from_zip,omitempty"` FromState string `json:"from_state,omitempty"` FromCity string `json:"from_city,omitempty"` FromStreet string `json:"from_street,omitempty"` ToCountry string...