Skip to content

Instantly share code, notes, and snippets.

View acarballo-monotype's full-sized avatar

Adrian Carballo acarballo-monotype

View GitHub Profile
@acarballo-monotype
acarballo-monotype / node-essential-packages.md
Last active October 6, 2020 05:46
Node.js Essential Packages

Node.js Essential Packages

Adrian's collection of super useful NPM packages.

Utilities

Async

  • async - Higher-order functions and common patterns for asynchronous code.
@acarballo-monotype
acarballo-monotype / standard-helpers.js
Created November 15, 2017 15:21
Standard Helpers
const toString = Object.prototype.toString;
function isFunction (obj) {
return toString.call(obj) === '[object Function]';
}
function isString (obj) {
return toString.call(obj) === '[object String]';
}