Collection of common helpers and utils for both JavaScript and NodeJS with TypeScript support and zero dependencies.
To use with node:
$ npm install common-stuff
import { isEqual } from 'common-stuff'
if (isEqual({'a': 1}, {'a': 1})) {
console.log('Hello')
}
In a browser always import only what is necessary to take full advantage of tree shaking.