Stephen Brian King
Stephen Brian King
This adds an `uncapitalize` function. Works like capitalize, but makes the first letter of the string lowercase.
OS: MacOS 10.12.6 Editor: VSCode 1.15.1 Typescript: 2.4.2 tslint: 5.7.0 tslint-language-service: 0.9.6 I've encountered a bug with how tslint-language-service works with the ter-indent rule inside files with interfaces. Whenever I...
All of the following are given as proper examples on standardjs.com: function foo () { return true } var obj = { 'key': 'value' } import { myFunc1, myFunc2 }...
Enum variants are currently broken - this should fix them. Example: ```ts ``` Currently produces: ```css [aria-current-page="page"].aria-current-page\:underline { text-decoration-line: underline; } ``` With this PR: ```css [aria-current="page"].aria-current-page\:underline { text-decoration-line: underline;...
Right now `z.enum` only works when you have a constant/static array of strings: ```ts const FishEnum = z.enum(["Salmon", "Tuna", "Trout"]); type FishEnum = z.infer; ``` But this doesn't work for...
In the readme, the express-session options `resave` and `saveUninitialized` are both set to true. Is this a requirement for using lusca?
Debug output: Platform: darwin Atom Version: 1.17.0 Linter Version: 2.1.4 All Linter Providers: - TSLint Matching Linter Providers: - TSLint Disabled Linter Providers; Current File scopes: - * - source.tsx...
TLS
How can you connect to a database that requires TLS, such as an RDS database with the default parameter group?
Adds basic TLS support without server CA verification
When passing a non-GET `Request` object as a single argument, the method is automatically changed to "GET".