Michal Minich
Michal Minich
```js var = SArray([]); console.log(arr.length); // 1 arr.push("abc"); console.log(arr.length); // 1 ``` Solution would be probably to fix the returned number or remove the .length accessor.
from _index.d.ts_: ```ts export interface SArray {... } export interface SDataArray extends SArray ``` I would proffered this be written as: ```ts export interface SArray extends ReadonlyArray { // only...
I want to use "SArray" for data constructor and type in the same file. I have to use following import construct. ``` import SArray, { SArray as SArrayType } from...
# Suggestion ## 🔍 Search Terms is:open project multiple label:Suggestion ## ✅ Viability Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript...
I want to remove double new lines in document (caused by copy paste from other app). I used regex Find: \n\n Replace: \n it is able to find the \n\n,...