Norbert Virth
Norbert Virth
Executing these: use Stringy\Stringy; $text = Stringy::create('/asd/qwe/'); $text = $text->trim(' \\/'); (A) With `mbstring` extension enabled in `php.ini` => It works fine, result is `'asd/qwe'` (B) Without `mbstring` => It...
### Issue Description MsBuild property `CompileDependsOn` is overridden in SDK style projects [here](https://github.com/dotnet/msbuild/blob/v17.1.0/src/Tasks/Microsoft.Common.CurrentVersion.targets#L3456). `Microsoft.Common.CurrentVersion.targets` is imported (indirectly) by `SDK.targets`, which means when using the implicit SDK import style: ``, then...
This TypeScript code (a Jasmine test): describe("array spread operator", function() { it('should be able to spread arguments', function() { let argumentsArray; function testFunction() { argumentsArray = [...arguments]; } (testFunction as...
Please in case the output .ts files already exist, only overwrite them if their content changed since the previous build. It seems Visual Studio build checks the files' last modified...
Please add an option like Auto[Camel|Pascal]CaseProperties into Ts[Interface|Class]Attribute. We use mixed casing, some classes have CamelCased property names, others have PascalCased ones. Currently, we have to attribute all the properties...
Can I reach somehow the downloaded content? I would like to download a pdf, put it in an iframe, and display it to the user using the browser's default pdf...
The Cookie created was HttpOnly, which caused the .done() callback to not be called. (See: https://github.com/johnculviner/jquery.fileDownload/issues/104)
The following C# code: [TsClass(AutoExportProperties = true)] public class MyBase { public bool BaseProperty1 { get; set; }; public bool BaseProperty2 { get; set; }; } [TsInterface(FlattenHierarchy = true, AutoExportProperties...
Hi, Using v1.6.1, this C# code: namespace MyNamespace { [TsInterface] public interface MyInterface { string Property { get; set; } } [TsInterface] public class MyClass : MyInterface { string MyInterface.Property...
Hi, Using v1.6.1, this C# code: namespace MyNamespace { [TsInterface] public class MyGenericBase { } [TsInterface] public class MyDescendant : MyGenericBase { } } will result in this generated TypeScript...