Sam Boylett
Sam Boylett
👍 calling `writeFile` without a callback was deprecated and now removed
I've been using this as a work around: ```typescript class MutationObserverUnobservable extends MutationObserver { private observerTargets: Array = []; observe(target: Node, options?: MutationObserverInit): void { this.observerTargets.push({ target, options }); return...
Given it's based off of the c# automapper, maybe ConvertUsing would work? Based off of this stack overflow answer: https://stackoverflow.com/questions/68664720/automapper-map-using-linked-maps-transitive-mapping-chain-maps
It might have taken over a year, but I can confirm `constructUsing` works for my use case! Thanks :)
We don't need JerryScript to support it. Same way we transpile TypeScript to JavaScript for web we can do for kaluma. Really all we need is a declaration file for...
PR submitted 😃
I get this issue in jest tests - using the public import fixed it (in this case I mocked it): ```javascript jest.mock('@mui/material/styles/styled', () => { const { styled } =...