Stefan Sechelmann
Stefan Sechelmann
I try to execute a function for all nodes in the tree and tried using the [doForAll](https://github.com/CirclonGroup/angular-tree-component/blob/19b58abe33dcbddbcba80c80ed26babfb7d43a16/projects/angular-tree-component/src/lib/models/tree.model.ts#L242) tree model function. I was surprised to learn that the corresponding [method](https://github.com/CirclonGroup/angular-tree-component/blob/19b58abe33dcbddbcba80c80ed26babfb7d43a16/projects/angular-tree-component/src/lib/models/tree-node.model.ts#L239) on...
Setting the `Settings.defaultZoneName` impacts `Interval.equal` behavior in unexpected ways. Execute this ```js const isoRange = '2021-03-24/2021-03-25'; range01 = Interval.fromISO(isoRange); range02 = Interval.fromISO(isoRange); Settings.defaultZoneName = Settings.defaultZoneName; range03 = Interval.fromISO(isoRange); range01.equals(range02); //...
I have not dug deep enough to really get to the bottom of the issue here but this should serve as a warning to all that use Luxon on nodejs...
* webpack Version: 5 * karma-webpack Version: 5 ### Feature Proposal Let webpack bundle custom entries along with the `karma-webpack` default bundles. ### Feature Use Case I tried to upgrade...
I have a small piece of code that runs in Chrome and Firefox but not in Safari. It involves `CryptoKey`s as generated by the WebCrypto API. And these keys seem...
In contract to what is stated in the documentation the runtime of `IXLRows.Delete()` is quadratic, see https://github.com/ClosedXML/ClosedXML/blob/a4f23123e1354dc05dcc39a20fae9c73730eb46d/ClosedXML/Excel/Rows/XLRows.cs#L80 In my case replacing `IXLRows.Delete()` by `IXLRange.Delete()` has huge performance gains. ```cs public...
Under certain conditions data validation ranges are broken when rows are inserted or deleted. I have narrowed down the issue to two test cases that clearly show the problem: Here...
Steps to reproduce: 1. In Excel, create a workbook with an image in the print header. 2. Load the workbook 3. Add a picture to the worksheet 4. Save the...
As of the puppetier [API docs](https://pptr.dev/api/puppeteer.screenshotclip) of the `screenshot` method the `scale` parameter is defined on the `clip` element and not top-level on the options as required by your API.