Skip to content

Instantly share code, notes, and snippets.

View mohammadiyan's full-sized avatar
💭
I may be slow to respond.

Mohammadiyan mohammadiyan

💭
I may be slow to respond.
View GitHub Profile

Regular Expression Cheatsheet

Anchors

^   Matches at the start of string or start of line if multi-line mode is
	enabled. Many regex implementations have multi-line mode enabled by
	default.

$ Matches at the end of string or end of line if multi-line mode is enabled.
@mohammadiyan
mohammadiyan / nodejs-cheatsheet.js
Created September 28, 2020 20:40 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html