This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Javascript (ES6) Code Snippets: [JS] | |
https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets | |
This extension contains code snippets for JavaScript in ES6 syntax for Vs Code editor (supports both JavaScript and TypeScript). It supports JavaScript (.js), TypeScript (.ts), JavaScript React (.jsx), TypeScript React (.tsx), Html (.html), Vue (.vue) files. | |
2. CSS Peek: [CSS] | |
https://marketplace.visualstudio.com/items?itemName=pranaygp.vscode-css-peek | |
Image demo | |
2.1 link: https://raw.githubusercontent.com/pranaygp/vscode-css-peek/master/working.gif | |
2.2 https://raw.githubusercontent.com/pranaygp/vscode-css-peek/master/symbolProvider.gif | |
This extension extends HTML and ejs code editing with Go To Definition and Go To Symbol in Workspace support for css/scss/less (classes and IDs) found in strings within the source code. This plugin has taken its inspiration from Brackets. The extension supports all the normal capabilities of symbol definition tracking, but does it for css selectors (classes, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class DeserializeService { | |
idx = 0; | |
refStack = []; | |
ridx = 0; | |
parseNext; | |
phpstr: string = ''; | |
constructor() { |