Skip to content

Instantly share code, notes, and snippets.

@godmar
Created November 22, 2016 14:49
Show Gist options
  • Save godmar/921a7c3b2a59c5ac5e00a11281af92d5 to your computer and use it in GitHub Desktop.
Save godmar/921a7c3b2a59c5ac5e00a11281af92d5 to your computer and use it in GitHub Desktop.
node_modules content of util and events subdirs
$ tree node_modules/util node_modules/events
node_modules/util
├── LICENSE
├── node_modules
│   └── inherits
│   ├── inherits_browser.js
│   ├── inherits.js
│   ├── LICENSE
│   ├── package.json
│   ├── README.md
│   └── test.js
├── package.json
├── README.md
├── support
│   ├── isBufferBrowser.js
│   └── isBuffer.js
├── test
│   ├── browser
│   │   ├── inspect.js
│   │   └── is.js
│   └── node
│   ├── debug.js
│   ├── format.js
│   ├── inspect.js
│   ├── log.js
│   └── util.js
└── util.js
node_modules/events
├── events.js
├── History.md
├── LICENSE
├── package.json
├── Readme.md
└── tests
├── add-listeners.js
├── check-listener-leaks.js
├── common.js
├── index.js
├── legacy-compat.js
├── listener-count.js
├── listeners.js
├── listeners-side-effects.js
├── max-listeners.js
├── modify-in-emit.js
├── num-args.js
├── once.js
├── remove-all-listeners.js
├── remove-listeners.js
├── set-max-listeners-side-effects.js
└── subclass.js
7 directories, 40 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment